flutter fab covers widget on keyboard open

Solutions on MaxInterview for flutter fab covers widget on keyboard open by the best coders in the world

showing results for - "flutter fab covers widget on keyboard open"
Nicole
09 Jan 2019
1final bool showFab = MediaQuery.of(context).viewInsets.bottom==0.0;
2
3//then use Visibility widget to wrap the FAB and set visible attribute to showFab
4buildAcitonButton(){
5	return Visibility(
6      visible: _showFab,
7      child: RaisedButton(
8        child: ...
9      ),
10    );
11}
similar questions
queries leading to this page
flutter fab covers widget on keyboard open