[ad_1]
I’m utilizing ListWheelScrollView to show my Information…
unfortunetly the ListWheelScrollView freezes and doesn’t reply if I scroll slowly….
ListWheelScrollView(
diameterRatio: 5,
itemExtent: 250,
kids: [
...controller.events.map((event) {
return EasyContainer(
margin: 10,
color: Colors.white,
shadowColor: Colors.black,
borderColor: Colors.blueGrey,
borderStyle: BorderStyle.solid,
borderWidth: 1,
borderRadius: 10,
showBorder: true,
onTap: () => Get.to(
() => const EventDetailsScreen()),
//TODO: pass Arguments of Event to new Screen
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: [
Row(
children: [
const Icon(Icons.star,
color: Colors.yellow),
const Expanded(
child: SizedBox()),
Container(
child: Text(
event.eventType!.tr,
...
Any Ideas why it is so slowly, buggy or doesn´t work…
[ad_2]
