rIIh / expandable-bottom-bar

Expandable bottom app bar widget for Flutter SDK
MIT License
109 stars 28 forks source link

avoid scrolling body of Scaffold #4

Closed pishguy closed 5 years ago

pishguy commented 5 years ago

when i add body to Scaffold, after opening bottom bar with TextField inside expandable-bottom-bar, and click on text field, that cause of scrolling body content, how can i resolve that?

for example

child: Scaffold(
  resizeToAvoidBottomPadding: true,
  backgroundColor: Theme.of(context).canvasColor,
  extendBody: true,
  body: Stack(children: <Widget>[Center(child: Text('aaaaa'))]),
moyosolaa commented 4 years ago

How did you solve this?