Make banner fullscreenable

This commit is contained in:
krawieck 2020-09-11 20:43:00 +02:00
parent 0f8a846e8a
commit 4cc1bd56b0
1 changed files with 4 additions and 1 deletions

View File

@ -275,7 +275,10 @@ class _CommunityOverview extends StatelessWidget {
return Stack(children: [ return Stack(children: [
if (community.banner != null) if (community.banner != null)
CachedNetworkImage(imageUrl: community.banner), FullscreenableImage(
url: community.banner,
child: CachedNetworkImage(imageUrl: community.banner),
),
SafeArea( SafeArea(
child: Padding( child: Padding(
padding: const EdgeInsets.only(top: 45), padding: const EdgeInsets.only(top: 45),