Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- return Container(
- child: Row(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Expanded(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Text(item.name??"", style: TextStyle(fontWeight: FontWeight.bold, color: RRColors.BlueDark), textAlign: TextAlign.left,),
- Text(item.description??"", softWrap:true, style: TextStyle(color: RRColors.Gray1)),
- ],
- ),
- ),
- Container(
- alignment: Alignment.topRight,
- child: Text(item.id.toString())
- )
- ],
- ),
- );
Advertisement
Add Comment
Please, Sign In to add comment