Mkhytar Mkhoian
Mkhytar Mkhoian
Hi, you mean tutorial?
I will add. For now, you can see the demo project
Hi When config change the controller not destroyed and `onSaveInstanceState`, `onRestoreInstanceState` not called.
So, if you use MVP your presenter still alive after config change and you can bind data to UI
Hi, I'm currently working on bottomsheet dialog implementation on my production app. I will publish it when it done
Sorry, but now I haven't time to finish it
@Joy-Whale If you need, use several usecase in one presenter. For example: ``` private final AddList mAddList; private final UpdateLists mUpdateLists; @Inject public AddListPresenter(AddList addList, UpdateLists updateLists) { this.mAddList =...
@romansbobans I think, the presenter should't have any platform dependencies, only java and then you can test presenter using only JUnit. For navigation good solution is to use Router pattern....