|
| 1 | +import type { NSSidebarGroup } from '../../.vitepress/theme/vitepress-theme' |
| 2 | + |
| 3 | +export default [ |
| 4 | + { |
| 5 | + text: 'Layout Containers', |
| 6 | + link: '/ui/#layout-containers', |
| 7 | + items: [ |
| 8 | + { text: 'StackLayout', link: '/ui/stack-layout' }, |
| 9 | + { text: 'GridLayout', link: '/ui/grid-layout' }, |
| 10 | + { text: 'RootLayout', link: '/ui/root-layout' }, |
| 11 | + { text: 'FlexboxLayout', link: '/ui/flexbox-layout' }, |
| 12 | + { text: 'WrapLayout', link: '/ui/wrap-layout' }, |
| 13 | + { text: 'DockLayout', link: '/ui/dock-layout' }, |
| 14 | + { text: 'AbsoluteLayout', link: '/ui/absolute-layout' }, |
| 15 | + ], |
| 16 | + }, |
| 17 | + { |
| 18 | + text: 'Navigation Components', |
| 19 | + link: '/ui/#navigation-containers', |
| 20 | + items: [ |
| 21 | + // { text: 'Frame', link: '//#' }, |
| 22 | + { text: 'Page', link: '/ui/page' }, |
| 23 | + { text: 'ActionBar', link: '/ui/action-bar' }, |
| 24 | + // { text: 'ActionItem', link: '//#' }, |
| 25 | + // { text: 'NavigationButton', link: '//#' }, |
| 26 | + // todo: move this elsewhere |
| 27 | + { |
| 28 | + text: 'Showing Modal', |
| 29 | + link: '/guide/ui/showing-modal', |
| 30 | + }, |
| 31 | + ], |
| 32 | + }, |
| 33 | + { |
| 34 | + text: 'Components', |
| 35 | + link: '/ui/#components', |
| 36 | + items: [ |
| 37 | + { text: 'ActivityIndicator', link: '/ui/activity-indicator' }, |
| 38 | + { text: 'Button', link: '/ui/button' }, |
| 39 | + { text: 'DatePicker', link: '/ui/datepicker' }, |
| 40 | + { text: 'HtmlView', link: '/ui/htmlview' }, |
| 41 | + { text: 'Image', link: '/ui/image' }, |
| 42 | + { text: 'Label', link: '/ui/label' }, |
| 43 | + { text: 'ListPicker', link: '/ui/listpicker' }, |
| 44 | + { text: 'ListView', link: '/ui/listview' }, |
| 45 | + { text: 'Placeholder', link: '/ui/placeholder' }, |
| 46 | + { text: 'Progress', link: '/ui/progress' }, |
| 47 | + { text: 'ScrollView', link: '/ui/scrollview' }, |
| 48 | + { text: 'SearchBar', link: '/ui/searchbar' }, |
| 49 | + { text: 'SegmentedBar', link: '/ui/segmentedbar' }, |
| 50 | + { text: 'Slider', link: '/ui/slider' }, |
| 51 | + { text: 'Switch', link: '/ui/switch' }, |
| 52 | + { text: 'TabView', link: '/ui/tabview' }, |
| 53 | + { text: 'TextField', link: '/ui/textfield' }, |
| 54 | + { text: 'TextView', link: '/ui/textview' }, |
| 55 | + { text: 'TimePicker', link: '/ui/timepicker' }, |
| 56 | + { text: 'WebView', link: '/ui/webview' }, |
| 57 | + ], |
| 58 | + }, |
| 59 | +] as NSSidebarGroup[] |
0 commit comments