I have a long list of items (objects) and each item has a getx controller.
Get.put(ItemController(itemModel), tag: itemModel.value.id.toString())
is set in the ListView.builder()
when the item tile is created, but it seems that the controller only actually gets created when the tile is displayed and only the first 10 or so are displayed initially.
I then need to update the values for all (many) of the items.
When I attempt to update the values in the item controllers, it can't "find" the controllers (because they have not yet been created).
Is it ok to use Get.put()
again for the same item? Or is there a better way to access these item controllers?