Advertisement
moseskarunia

Untitled

Mar 14th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.87 KB | None | 0 0
  1. new InkWell(
  2.                 onTap: () {},
  3.                 child: new Row(
  4.                   children: <Widget>[
  5.                     new Expanded(
  6.                         child: new Padding(
  7.                       padding: new EdgeInsets.fromLTRB(8.0, 8.0, 0.0, 8.0),
  8.                       child: new Text(
  9.                         'Curry Rice with Sunny Side Egg',
  10.                         overflow: TextOverflow.ellipsis,
  11.                         maxLines: 1,
  12.                       ),
  13.                     )),
  14.                     new Padding(
  15.                       padding: new EdgeInsets.all(8.0),
  16.                       child: new Icon(
  17.                         Icons.arrow_upward,
  18.                         color: Colors.black54,
  19.                         size: 20.0,
  20.                       ),
  21.                     )
  22.                   ],
  23.                 ),
  24.               ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement