tileList property
Widget
get
tileList
Implementation
Widget get tileList {
return ListView.builder(
shrinkWrap: true,
itemCount: tiles.length,
padding: EdgeInsets.zero,
physics: const NeverScrollableScrollPhysics(),
itemBuilder: (BuildContext context, int index) {
return SettingsTileInfo(
isTopTile: index == 0,
isBottomTile: index == tiles.length - 1,
needDivider: index != tiles.length - 1,
child: tiles[index],
);
},
);
}