Navigator Config
val myNavigator = rememberNavigator {
screen<HomeKey> { Text("This is a screen!") }
bottomSheet<ProfileKey>(bottomSheetOptions = ..) { key -> Text("This is a profile for: ${key.profileId}"}
dialog<MyDialogKey>(dialogOptions =..) { Text("This is a dialog!") }
}Last updated