RealDanCarroll
RealDanCarroll
Contents of abc_list.dart `import 'package:flutter/material.dart'; import 'package:azlistview/azlistview.dart'; import 'package:scrollable_positioned_list/scrollable_positioned_list.dart'; import '../classes/singleUserData.dart'; class AbcList extends StatefulWidget { const AbcList({ Key key, this.userList, }) : super(key: key); final List userList; @override _AbcListState...
Is there a better way I can provide the code? When you say “data should not be requested in the build”, can you elaborate? > On Dec 17, 2020, at...
I created a simple demo project using static data, it works great. I used the same static data in my project, I have the same issue. There must be some...