Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prevent coming up floating action button (FAB) when clicking a search box in Flutter?

How can I prevent a FAB (floating action button) from coming up when I'm clicking on a text field as shown in the following image? (source code link is available in first comment)

FAB on search box

like image 549
Mo Meshkani Avatar asked Dec 03 '25 09:12

Mo Meshkani


1 Answers

The Scaffold has a property to avoid the widgets in it to resize on keyboard pop-up. That would look something like this:

Scaffold(
    resizeToAvoidBottomPadding: false,
    body: body,
    appBar: appBar,
);
like image 89
leodriesch Avatar answered Dec 05 '25 00:12

leodriesch



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!