filmov
tv
Flutter Widgets for Beginners: Expanded, Stack, ListView & Scrolling Explained

Показать описание
00:00 Intro
05:35 Expanded
08: 34 Stack
09:13 ListView
Where is Scrolling in the Code?
itemCount: 30,
itemBuilder: (context, index) {
return ListTile(
leading: CircleAvatar(child: Text('${index + 1}')),
title: Text('List Item ${index + 1}'),
);
},
),
05:35 Expanded
08: 34 Stack
09:13 ListView
Where is Scrolling in the Code?
itemCount: 30,
itemBuilder: (context, index) {
return ListTile(
leading: CircleAvatar(child: Text('${index + 1}')),
title: Text('List Item ${index + 1}'),
);
},
),