Skip to content

Instantly share code, notes, and snippets.

@ponnamkarthik
Created December 4, 2021 03:22
Show Gist options
  • Save ponnamkarthik/6250cb51d27f4b07a840f9a7780a2905 to your computer and use it in GitHub Desktop.
Save ponnamkarthik/6250cb51d27f4b07a840f9a7780a2905 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: ListView(
children: const [
Text("hello user")
],
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment