Skip to content

Instantly share code, notes, and snippets.

@slightfoot
Created February 16, 2018 05:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save slightfoot/2baa44e8a35f5226cd4c9f41caf81d5f to your computer and use it in GitHub Desktop.
Save slightfoot/2baa44e8a35f5226cd4c9f41caf81d5f to your computer and use it in GitHub Desktop.
"Android Fill Viewport" style of content for Flutter, where even when the keyboard appears the content flows behind.
class SomeWidgetState extends State<SomeWidget> {
@override
Widget build(BuildContext context) {
return new Scaffold(body: new LayoutBuilder(builder: _buildContent));
}
Widget _buildContent(BuildContext context, BoxConstraints constraints) {
if (constraints.hasBoundedHeight) {
constraints = constraints.copyWith(maxHeight: constraints.maxHeight +
MediaQuery.of(context).viewInsets.vertical);
}
return new SingleChildScrollView(
child: new ConstrainedBox(
constraints: constraints,
child: new Column(
children: <Widget>[
/* ... */
],
),
),
);
}
}
@mousaa
Copy link

mousaa commented May 23, 2018

How do you prevent this from causing an overflow error when you change your device orientation?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment