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),