Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import 'package:flutter/material.dart';
- class SplashScreen extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- return DecoratedBox(
- decoration: BoxDecoration(
- image: DecorationImage(
- image: AssetImage("assets/images/bg_splash.jpg"),
- fit: BoxFit.cover,
- ),
- ),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.end,
- children: <Widget>[
- Container(
- padding: EdgeInsets.only(
- bottom:
- MediaQuery.of(context).orientation == Orientation.portrait
- ? 56
- : 12),
- child: Image.asset("assets/images/logo_branco_288x192.png"),
- ),
- ],
- ),
- );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment