ランキングに戻る
🛸 A pragmatic navigation library for Compose Multiplatform
androidandroid-libraryandroid-navigationkotlinkotlin-androidcomposejetpack-composeandroid-composenavigationnavigatorrouterdeeplink
主要指標
スター成長
スター
3.1k
フォーク
167
週間成長
—
Issue
186
1k2k3k
2021年7月2022年5月2023年3月2024年1月2024年11月2025年9月2026年7月
README
Voyager: Compose on Warp Speed
A multiplatform navigation library built for, and seamlessly integrated with, Jetpack Compose.
Create scalable Single-Activity apps powered by a pragmatic API:
class HomeScreenModel : ScreenModel {
// ...
}
class HomeScreen : Screen {
@Composable
override fun Content() {
val screenModel = rememberScreenModel<HomeScreenModel>()
// ...
}
}
class SingleActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
Navigator(HomeScreen())
}
}
}
Turn on the Warp Drive and enjoy the voyage 🖖
Documentation
See the project website for documentation and APIs.
Features
- Supported platforms: Android, iOS, Desktop, Web.
- Linear navigation
- BottomSheet navigation
- Tab navigation like Youtube app
- Nested navigation (multiple stacks, parent navigation)
- ScreenModel (a.k.a ViewModel) integrated with Koin, Kodein, Hilt, Coroutines, RxJava, LiveData
- Android ViewModel integration (with Hilt support)
- Type-safe multi-module navigation
- State-aware Stack API
- Built-in transitions
- State restoration after Activity recreation
- Lifecycle callbacks
- Back press handling
- Deep linking support
Samples
| Stack API | Android ViewModel | ScreenModel | Basic nav. |
|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
| BottomSheet nav. | Tab nav. | Multi-module nav. | Nested nav. |
|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
関連リポジトリ







