Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ListView.builder(
- itemCount: cardCount,
- itemBuilder: (BuildContext context, int index) {
- return Card(
- child: Column(
- children: [
- Image.asset('assets/images/card_image.png'),
- ListTile(
- title: Text('Card $index'),
- subtitle: Text('Subtitle $index'),
- ),
- ],
- ),
- );
- },
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement