Skip to content

Instantly share code, notes, and snippets.

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