Advertisement
Guest User

Untitled

a guest
Jan 10th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.70 KB | None | 0 0
  1.             Flexible(
  2.                 child: Column(
  3.                   crossAxisAlignment: CrossAxisAlignment.start,
  4.                   mainAxisAlignment: MainAxisAlignment.spaceBetween,
  5.                   children: <Widget>[
  6.                     Wrap(
  7.                       direction: Axis.horizontal,
  8.                       children: <Widget>[
  9.                         Text(lesson.name),
  10.                       ],
  11.                     ),
  12.                     Wrap(
  13.                       direction: Axis.horizontal,
  14.                       children: <Widget>[
  15.                         new Text(lesson.duration),
  16.                       ],
  17.                     ),
  18.                   ],
  19.                 ),
  20.               ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement