Guest User

Untitled

a guest
Nov 29th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.70 KB | None | 0 0
  1.     return Container(
  2.       child: Row(
  3.         crossAxisAlignment: CrossAxisAlignment.start,
  4.         children: <Widget>[
  5.           Expanded(
  6.             child: Column(
  7.               crossAxisAlignment: CrossAxisAlignment.start,
  8.               children: <Widget>[
  9.                 Text(item.name??"", style: TextStyle(fontWeight: FontWeight.bold, color: RRColors.BlueDark), textAlign: TextAlign.left,),
  10.                 Text(item.description??"", softWrap:true, style: TextStyle(color: RRColors.Gray1)),
  11.               ],
  12.             ),
  13.           ),
  14.           Container(
  15.               alignment: Alignment.topRight,
  16.               child: Text(item.id.toString())
  17.           )
  18.         ],
  19.       ),
  20.     );
Advertisement
Add Comment
Please, Sign In to add comment