fix: Fixed padding

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