Created
October 22, 2018 05:31
-
-
Save diegoveloper/89571675bfc9b38dc610fbc2faf3e090 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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
test