Release 0.7.3 (18)
- Updated
Layout.Content
function to not take a state parameter and addedstateChanges()
function.- This provides more control over the states to be rendered
- New usage would look like the following:
@Composable
override fun Content() {
val state by stateChanges()
Text("state = $state")
}
Full Changelog: 0.7.2...0.7.3