Maybe my question is a nooby one, but i really try to understand how to implement the following operations:
- How to add item for a list without the need of rebuilding all list.
- How to update a class instance property value.
- Does BLoCProvider used only once in a class?
===> I'm asking those question because i see that BLoC working with 'Equatable' and that in a the state class there is always a need to bring default value to the state we provide to the view class.
- Another Question (what change the view and operate the state): Does i need to bring always a list in order for example to update an item from the list or only changing the state+emit(in cubit) will change the state of the application, maybe it realted to BLocListener?