Skip to content

Instantly share code, notes, and snippets.

@rewhex
rewhex / 1. App.kt
Last active June 28, 2024 11:01
Voyager iOS Swipe back navigation; thanks to @kevinvanmierlo
// commonMain
@Composable
fun App() {
MyApplicationTheme {
Navigator(
screen = InitialScreen(),
disposeBehavior = NavigatorDisposeBehavior(),
onBackPressed = { true },
) {