Skip to content

Instantly share code, notes, and snippets.

@diegoveloper
Created October 22, 2018 05:20
Show Gist options
  • Save diegoveloper/6f3929631693f4910bb7a52eb12ddfb2 to your computer and use it in GitHub Desktop.
Save diegoveloper/6f3929631693f4910bb7a52eb12ddfb2 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Scroll Limit reached"),
),
body: Column(
children: <Widget>[
Container(
height: 50.0,
color: Colors.green,
child: Center(
child: Text(message),
),
),
Expanded(
child: ListView.builder(
itemCount: 30,
itemBuilder: (context, index) {
return ListTile(title: Text("Index : $index"));
},
),
),
],
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment