Hi everyone,
I am trying to make a columnView generate its children dynamically from a list that ideally contains different types of items. Since Dart only support Lists of a single DataType, I would want to solve this using class inheritance. Is there a way to do this in FlutterFlow?
For reference, I have found a page describing how this would work in Flutter directly: https://docs.flutter.dev/cookbook/lists/mixed-list.
Since I can't see how to create and extend abstract classes, my workaround is to simply have one large masterclass that contains all attributes that I would want my subclasses to contain separately.
Any ideas on a better approach to this problem?