```bind<ViewContract.Presenter>() with scope...
# kodein
l
Copy code
bind<ViewContract.Presenter>() with scoped(androidScope<ViewActivity>()).singleton {
            PresenterImpl(
                    view = context as ViewContract.View,
                    dataSource = instance())
        }