-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
mkdocs.yml
88 lines (82 loc) · 2.46 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: Voyager
repo_name: Voyager
repo_url: https://github.com/adrielcafe/voyager
site_description: 🛸 A pragmatic navigation library for Jetpack Compose"
remote_branch: gh-pages
#copyright: 'Copyright © '
theme:
name: 'material'
logo: 'media/icon/logo.png'
favicon: 'media/icon/logo.png'
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'cyan'
accent: 'deep-purple'
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
accent: 'blue-grey'
toggle:
icon: material/weather-sunny
name: Switch to light mode
# Plugins
plugins:
- search
# - minify:
# minify_html: true
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.emoji
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
nav:
- 'Overview': index.md
- 'Setup': setup.md
- 'Navigation': navigation/index.md
- 'Nested navigation': navigation/nested-navigation.md
- 'Multi-module navigation': navigation/multi-module-navigation.md
- 'Navigation extensions':
- 'BottomSheet navigation': navigation/bottomsheet-navigation.md
- 'Tab navigation': navigation/tab-navigation.md
- 'ScreenModel':
- 'Overview': screenmodel/index.md
- 'Coroutines integration': screenmodel/coroutines-integration.md
- 'RxJava integration': screenmodel/rxjava-integration.md
- 'LiveData integration': screenmodel/livedata-integration.md
- 'Hilt integration': screenmodel/hilt-integration.md
- 'Koin integration': screenmodel/koin-integration.md
- 'Kodein integration': screenmodel/kodein-integration.md
- 'Android ViewModel': android-viewmodel/index.md
- 'ViewModel KMP': android-viewmodel/viewmodel-kmp.md
- 'Stack API': stack-api.md
- 'State restoration': state-restoration.md
- 'Transitions': transitions-api.md
- 'Lifecycle': lifecycle.md
- 'Back press': back-press.md
- 'Deep links': deep-links.md
- 'Migration to 1.0.0': migration-to-1.0.0.md
- 'Faq': faq.md
- 'Community Projects': community-projects.md