Created
February 1, 2020 17:52
-
-
Save jediyeti/a589ec01d79fde19639217843401925d to your computer and use it in GitHub Desktop.
ListView Example
This file contains 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
import 'package:flutter/material.dart'; | |
import 'package:flutter/rendering.dart'; | |
void main() { | |
debugPaintSizeEnabled = false; | |
runApp(MaterialApp(home: MyApp())); | |
} | |
class MyApp extends StatelessWidget { | |
final List<Widget> widgetsList = [ | |
Container( | |
padding: const EdgeInsets.all(8), | |
child: const Text('He\'d have you all unravel at the'), | |
color: Colors.teal[100], | |
), | |
Container( | |
padding: const EdgeInsets.all(8), | |
child: const Text('Heed not the rabble'), | |
color: Colors.teal[200], | |
), | |
Container( | |
padding: const EdgeInsets.all(8), | |
child: const Text('Sound of screams but the'), | |
color: Colors.teal[300], | |
), | |
Container( | |
padding: const EdgeInsets.all(8), | |
child: const Text('Who scream'), | |
color: Colors.teal[400], | |
), | |
Container( | |
padding: const EdgeInsets.all(8), | |
child: const Text('Revolution is coming...'), | |
color: Colors.teal[500], | |
), | |
Container( | |
padding: const EdgeInsets.all(8), | |
child: const Text('Revolution, they...'), | |
color: Colors.teal[600], | |
) | |
]; | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar(title: Text('Container')), | |
body: _staticListView(widgetsList), | |
); | |
} | |
Widget _staticListView(List<Widget> children) { | |
return ListView( | |
// physics: NeverScrollableScrollPhysics(), | |
// itemExtent: 100, | |
children: children); | |
} | |
Widget _dynamicListView(List<Widget> children) { | |
return ListView.builder( | |
itemCount: children.length, | |
itemBuilder: (context, index) { | |
return children[index]; | |
}, | |
); | |
} | |
Widget _separatedListView(List<Widget> children) { | |
return ListView.separated( | |
itemCount: children.length, | |
itemBuilder: (context, index) { | |
return children[index]; | |
}, | |
separatorBuilder: (context, int) { | |
return Container( | |
color: Colors.white, height: 4); | |
} | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment