oldergod / android-architecture

MVI architecture Implementation of the ToDo app.
Apache License 2.0
669 stars 70 forks source link

How are you handling savedInstanceState ? #25

Closed Zeyad-37 closed 6 years ago

Zeyad-37 commented 6 years ago

I really like your implementation of MVI, but i was wondering what do you about savedInstanceState ? because i havent seen any code that managing that.

oldergod commented 6 years ago

Hey Zeyad, you're right. At the moment, there is no code that manage data through savedInstanceState. When I ported the TODO app to the MVI implementation, I didn't change the functionality the original repository supported and it didn't include this part.

Zeyad-37 commented 6 years ago

Great thanks, I will give some thought to it and let you know if i come up with something