Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ponnamkarthik/82bfdaf36f3506e211d637b8510d4697 to your computer and use it in GitHub Desktop.
Save ponnamkarthik/82bfdaf36f3506e211d637b8510d4697 to your computer and use it in GitHub Desktop.
Vertical viewport was given unbounded height.
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: CustomScrollView(
slivers: [
SliverList(delegate: SliverChildBuilderDelegate(
(context, index) {
return Text("hello user");
},
childCount: 10
)),
],
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment