Closed Bimbum1337 closed 1 year ago
@Bimbum1337 Try setting the maintainBottomViewPadding parameter to true for the SafeArea widget.
SafeArea( maintainBottomViewPadding: true, child: ____ , )
I'm not using SafeArea component and the background issue persists
Hey,
i'm currently facing the same issue. How to set this white part transparent?
I tried your solution: Scaffold > body > SafeArea > maintainBottomViewPadding: true
but it's not working :s
@MarkoshYevhenii
Make sure that you use
extendBody: true
,
maintainBottomViewPadding: true,
Scaffold(
extendBody: true,
body: SafeArea(
maintainBottomViewPadding: true,
child: Container(),
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
floatingActionButton: FloatingActionButton(),
bottomNavigationBar: AnimatedBottomNavigationBar(),
);
@baptistesx, @jonatandorozco, @Bimbum1337
Awesome, it works thanks a lot !
Hello, I'm trying to turn this into transparent
I know that I have to extend the body to get it working, but the issue is am using safe area at the body, but seems that it doesn't work unless I remove the safearea widget