Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Container(
- color: Colors.white,
- child: Column(
- children: [
- Padding(
- padding: EdgeInsets.fromLTRB(16, 4, 12, 4),
- child: Row(
- children: [
- Container(
- decoration: BoxDecoration(
- color: Colors.red,
- borderRadius: BorderRadius.all(Radius.circular(7.0)),
- ),
- child: Padding(
- padding: EdgeInsets.all(5.0),
- child: Icon(Icons.home),
- ),
- ),
- Container(
- padding: EdgeInsets.symmetric(horizontal: 16.0),
- width: MediaQuery.of(context).size.width * 0.5,
- child: Text(
- 'Some reeeeally long long text',
- overflow: TextOverflow.ellipsis,
- ),
- ),
- const Spacer(),
- Padding(
- padding: EdgeInsets.only(right: 8),
- child: Text('Some extra text'),
- ),
- Icon(Icons.arrow_forward_ios),
- ],
- ),
- ),
- ],
- ),
- ),
Advertisement
Add Comment
Please, Sign In to add comment