akshathjain / sliding_up_panel

A draggable Flutter widget that makes implementing a SlidingUpPanel much easier!
https://pub.dartlang.org/packages/sliding_up_panel
Other
1.38k stars 381 forks source link

Protecting background visibility #165

Open ghenry opened 4 years ago

ghenry commented 4 years ago

Hi all,

Not a bug, but a question. I've been trying different ways on different screen resolutions to protect my Dial button. On low res ones it's like this. Any tips? These are using GetX and:

              Container(
                  height: Get.height * 0.5,
                  color: Colors.white,
                  child: Column(
                      mainAxisAlignment: MainAxisAlignment.spaceEvenly,
                      children: <Widget>[
                        Expanded(
                          child: Row(

Feel free to point me to SO for this, but thought you guys were best to ask. I was looking to use SafeArea for the minHeight, but can't make that work. What design patterns should I be looking at?

Screenshot_20200709-143741

Thanks.