From 7876164dfc13a059354854f032f17b037441dcc6 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Wed, 28 Oct 2020 09:59:18 +0100 Subject: [PATCH] fix: user bottom sheet design --- lib/components/user_bottom_sheet.dart | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/components/user_bottom_sheet.dart b/lib/components/user_bottom_sheet.dart index d91c6bc..22095ef 100644 --- a/lib/components/user_bottom_sheet.dart +++ b/lib/components/user_bottom_sheet.dart @@ -153,11 +153,13 @@ class UserBottomSheet extends StatelessWidget { ), ], ), - body: ListView( + body: Column( children: [ - ContentBanner( - user.avatarUrl, - defaultIcon: Icons.person_outline, + Expanded( + child: ContentBanner( + user.avatarUrl, + defaultIcon: Icons.person_outline, + ), ), ListTile( title: Text(L10n.of(context).username),