how can I make BottomNavigationBar stick on top of keyboard flutter

前端 未结 4 922
礼貌的吻别
礼貌的吻别 2021-02-05 08:32

I am trying to make a simple chat app, so I created a scaffold and my body, will be the messages and my bottomNavigationBar would be my typing field and sending ico

4条回答
  •  后悔当初
    2021-02-05 08:43

    If you need some kind of button; you can do:

    Scaffold(
                bottomNavigationBar: bottomNavigationBar,
                floatingActionButton: ExampleButton(
                  text: 'Hello',
                ),
                body: body,
              ),
    

    You can apply further customizations on the Floating Action Button using parameters in the Scaffold.

提交回复
热议问题