Closed andim27 closed 3 months ago
Do not understand why NyListView not works(all was ok early)
Expanded( //--This code is working child: ListView.builder( itemCount: incomingItems.length, itemBuilder: (context, index) { return itemTitleView(incomingItems[index]); }, ), // This code do not working - why? // NyListView( // child: (BuildContext context, dynamic data) { // return itemTitleView(data); // }, // data: () async { // return incomingItems; // }, // stateName: "list_of_incoming", // ),
Hi @andim27,
Hope you're well.
Don't use NyListView inside a Expanded widget 👍
NyListView
Expanded
Do not understand why NyListView not works(all was ok early)