Make banner fullscreenable
This commit is contained in:
parent
0f8a846e8a
commit
4cc1bd56b0
|
@ -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),
|
||||||
|
|
Loading…
Reference in New Issue