repositories {
mavenCentral()
}
kotlin {
sourceSets {
commonMain {
dependencies {
implementation("at.florianschuster.control:control-core:$version")
}
}
}
}
see changelog for versions
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.
- kotlin-counter: most basic kotlin example. uses
Controller
. - android-counter: android counter example built with jetpack compose.
visit my website.