FrazeColder

Results 10 comments of FrazeColder

Any updates here? I have the same problem and I don't think @erwangse and me are the only two people who need this feature.

I do now know what's the problem here. Take a look at this: https://github.com/flutter/flutter/issues/99832#issuecomment-1066409788 There a flutter core developer describes the issue here. Is there any way we can add...

Hi @WilliamCunhaCardoso sadly not... you are facing the same issue now?

But when I place the navigation bar inside the body of SliderDrawer the bottom navigation bar will not be pushed out of the screen when opening the drawer. Did you...

Can you post an example? @InFaMoUsZero My scaffold looks like this: ``` return Scaffold( body: SliderDrawer( slider: Container(color: Colors.red), appBar: const SliderAppBar( title: Text('Hello World'), isTitleCenter: true, ), child: Scaffold(...

Can you also post the content of you `appBar` here please? Because when I wrap my `SliderAppBar` inside a `Scaffold` I get a render error. @InFaMoUsZero

Am I doing something wrong here? @InFaMoUsZero ``` return SliderDrawer( slider: Scaffold( body: Container(color: Colors.red), ), appBar: Scaffold( appBar: AppBar( title: Text("E"), ), ), child: useSafeArea ? SafeArea(child: getContent()) :...

This works for you? This returns me the following:

FABULOSE! This now works! It would be very cool if bug #21 and bug #23 will be fixed soon so we do not have to work with workarounds. If you...

I just found out that it works via `freeze: true`. However, one question regarding this: If the onboarding screen text plus image requires to be scrolled (e.g. text plus image...