wemersonrv

Splash

Jun 28th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.78 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class SplashScreen extends StatelessWidget {
  4.   @override
  5.   Widget build(BuildContext context) {
  6.     return DecoratedBox(
  7.       decoration: BoxDecoration(
  8.         image: DecorationImage(
  9.           image: AssetImage("assets/images/bg_splash.jpg"),
  10.           fit: BoxFit.cover,
  11.         ),
  12.       ),
  13.       child: Column(
  14.         mainAxisAlignment: MainAxisAlignment.end,
  15.         children: <Widget>[
  16.           Container(
  17.             padding: EdgeInsets.only(
  18.                 bottom:
  19.                     MediaQuery.of(context).orientation == Orientation.portrait
  20.                         ? 56
  21.                         : 12),
  22.             child: Image.asset("assets/images/logo_branco_288x192.png"),
  23.           ),
  24.         ],
  25.       ),
  26.     );
  27.   }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment