Skip to content

Instantly share code, notes, and snippets.

@samuelematias
Created May 15, 2020 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelematias/f6178f1a1dee97396d28f26bc490f428 to your computer and use it in GitHub Desktop.
Save samuelematias/f6178f1a1dee97396d28f26bc490f428 to your computer and use it in GitHub Desktop.
Modal with keyboard Flutter
showModalBottomSheet(
isScrollControlled: true,
context: context,
builder: (context) {
return SingleChildScrollView(
child:Container(
padding:
EdgeInsets.only(bottom: MediaQuery.of(context).viewInsets.bottom),
child: AnyChild(),
)
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment