control
Introduction: 🎛️coroutines flow based uni-directional architecture
Tags:

repositories {
mavenCentral()
}
kotlin {
sourceSets {
commonMain {
dependencies {
implementation("at.florianschuster.control:control-core:$version")
}
}
}
}
see changelog for versions
controller

A Controller is an
ui-independent class that controls the state of a view. The role of a Controller is to separate
business-logic from view-logic. A Controller has no dependency to the view, so it can easily be
unit tested.
info & documentation
examples
- kotlin-counter: most basic kotlin example. uses
Controller. - android-counter: android counter example built with jetpack compose.
author
visit my website.
