Merge branch 'krille/fix-app-bar' into 'master'

Fix app bar

See merge request ChristianPauly/fluffychat-flutter!82
This commit is contained in:
Christian Pauly 2020-06-24 13:15:36 +00:00
commit dfc3521d36
1 changed files with 7 additions and 9 deletions

View File

@ -299,15 +299,13 @@ class _ChatListState extends State<ChatList> {
? Text(L10n.of(context).share)
: Padding(
padding: EdgeInsets.all(8),
child: Expanded(
child: TextField(
autocorrect: false,
controller: searchController,
decoration: InputDecoration(
contentPadding: EdgeInsets.all(9),
border: InputBorder.none,
hintText: L10n.of(context).searchForAChat,
),
child: TextField(
autocorrect: false,
controller: searchController,
decoration: InputDecoration(
contentPadding: EdgeInsets.all(9),
border: InputBorder.none,
hintText: L10n.of(context).searchForAChat,
),
),
),