Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.71 KB | None | 0 0
  1. @override
  2.   Widget build(BuildContext context) {
  3.     return //SafeArea(
  4.       /*child:*/ Scaffold(
  5.         appBar: AppBar(
  6.           backgroundColor: Colors.transparent,
  7.           elevation: 0.0,
  8.           title: Center( child: Text('Chefed', style: TextStyle(color: Colors.black),),),
  9.         ),
  10.         body: Stack(
  11.           fit: StackFit.expand,
  12.           children: <Widget>[
  13.             Image.network(
  14.               'https://i.pinimg.com/564x/6c/6b/35/6c6b35cd577229dc01a3abf5b75fb418.jpg',
  15.               fit: BoxFit.cover,
  16.               height: double.infinity,
  17.               width: double.infinity,
  18.               alignment: Alignment.center,
  19.             ),
  20.  
  21.           ],
  22.         ),
  23.       //),
  24.     );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement