fix: Fixed padding

This commit is contained in:
Deven Joshi
2020-12-09 17:54:13 +05:30
parent 839582d72b
commit 79b1401700
+4 -1
View File
@@ -68,11 +68,14 @@ class _ChatInfoScreenState extends State<ChatInfoScreen> {
SizedBox(height: 15.0), SizedBox(height: 15.0),
_OptionListTile( _OptionListTile(
title: '@user', title: '@user',
trailing: Text( trailing: Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: Text(
widget.user.name, widget.user.name,
style: TextStyle( style: TextStyle(
color: Colors.black.withOpacity(0.5), fontSize: 16.0), color: Colors.black.withOpacity(0.5), fontSize: 16.0),
), ),
),
onTap: () {}, onTap: () {},
), ),
], ],