Skip to content

Instantly share code, notes, and snippets.

@ponnamkarthik
Last active December 13, 2021 06:34
Show Gist options
  • Save ponnamkarthik/55b64bfad6345148d899d396d4dab279 to your computer and use it in GitHub Desktop.
Save ponnamkarthik/55b64bfad6345148d899d396d4dab279 to your computer and use it in GitHub Desktop.
Vertical viewport was given unbounded height.
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: SingleChildScrollView(
child: Column(
children: const [
Text("hello user")
],
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment