[mob][photos] Remove padding around naming banner

This commit is contained in:
laurenspriem 2024-05-11 15:38:48 +05:30
parent fc6830bdaf
commit 7045dbaeff

View file

@ -142,9 +142,6 @@ class _ClusterPageState extends State<ClusterPage> {
), ),
body: Column( body: Column(
children: [ children: [
widget.showNamingBanner
? const SizedBox(height: 12)
: const SizedBox.shrink(),
widget.showNamingBanner widget.showNamingBanner
? RepaintBoundary( ? RepaintBoundary(
child: Padding( child: Padding(
@ -185,9 +182,6 @@ class _ClusterPageState extends State<ClusterPage> {
), ),
) )
: const SizedBox.shrink(), : const SizedBox.shrink(),
widget.showNamingBanner
? const SizedBox(height: 12)
: const SizedBox.shrink(),
Expanded( Expanded(
child: Stack( child: Stack(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,