Skip to content

Instantly share code, notes, and snippets.

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