Advertisement
Guest User

whytho

a guest
Jul 3rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.60 KB | None | 0 0
  1.   @override
  2.   Widget build(BuildContext context) {
  3.     return new Scaffold(
  4.       body: new SingleChildScrollView(
  5.         child: new Container(
  6.           child: new Column(
  7.             children: <Widget>[
  8.               new HeaderProfile(),
  9.               new Expanded(
  10.                 flex: 1,
  11.                 child: new ListView.builder(
  12.                   itemCount: 5,
  13.                   itemBuilder: (BuildContext context, int index) {
  14.                     return new DreamCard();
  15.                   },
  16.                 ),
  17.               ),
  18.             ],
  19.           ),
  20.         ),
  21.       ),
  22.     );
  23.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement