Advertisement
Guest User

Untitled

a guest
Sep 10th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.51 KB | None | 0 0
  1. body: ListView(
  2.         children: recipeitems
  3.             .map((recipeItem) => Card(
  4.                   child: Column(
  5.                     mainAxisSize: MainAxisSize.min,
  6.                     children: <Widget>[
  7.                       ListTile(
  8.                         title: Text('a'),
  9.                       ),
  10.                       ButtonTheme.bar(
  11.                         child: Row(
  12.                         mainAxisSize: MainAxisSize.max,
  13.                         children: [
  14.                           ButtonBar(
  15.                             mainAxisSize: MainAxisSize.min,
  16.                             children: <Widget>[
  17.                               Icon(Icons.timer),
  18.                               Text('a'),
  19.                               Icon(Icons.person),
  20.                               Text('a'),
  21.                             ],
  22.                           ),
  23.                           Spacer(),
  24.                           ButtonBar(
  25.                             children: <Widget>[
  26.                               FlatButton(
  27.                                 child: const Text('Info'),
  28.                                 color: Colors.black,
  29.                                 textColor: Colors.white,
  30.                                 onPressed: () {},
  31.                               ),
  32.                             ],
  33.                           ),
  34.                         ],
  35.                       ),
  36.                       ),
  37.                     ],
  38.                   ),
  39.                 ))
  40.             .toList(),
  41.       ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement