interface TermsContract
Following the MVP design pattern this interface represent the contract for the view and the presenter responsible for the terms and condition feature |
|
class TermsFragment : FlowFragment<TermsContract.Presenter>, TermsContract.View
a Fragment displaying the terms and conditions screen |
|
class TermsPresenter : TermsContract.Presenter
Following the MVP design pattern this interface represent the implementation of the TermsContract.Presenter. this class executes the terms and condition business logic and ask for UI updates depending on results. |