react-native-navigation的迁移库

sidebars.js 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. module.exports = {
  2. docs: {
  3. 'Getting Started': [
  4. 'before-you-start',
  5. 'installing',
  6. 'playground-app',
  7. 'showcases'
  8. ],
  9. 'Using the app': [
  10. 'app-launch',
  11. 'basic-navigation',
  12. 'advanced-navigation',
  13. 'screen-lifecycle',
  14. 'passing-data-to-components',
  15. ],
  16. Layouts: [
  17. 'docs-stack',
  18. 'docs-bottomTabs',
  19. 'docs-sideMenu',
  20. 'docs-externalComponent',
  21. ],
  22. Hierarchy: [
  23. 'docs-root',
  24. 'docs-modal',
  25. 'docs-overlay'
  26. ],
  27. Styling: [
  28. 'theme',
  29. 'statusBar-docs',
  30. 'orientation',
  31. 'docs-animations',
  32. 'fonts',
  33. 'constants-docs'
  34. ],
  35. Meta: [
  36. 'meta-contributing'
  37. ]
  38. },
  39. api: [
  40. {
  41. type: 'category',
  42. label: 'Navigation',
  43. items: [
  44. 'component-api',
  45. 'root-api',
  46. 'stack-api',
  47. 'modal-api',
  48. 'overlay-api'
  49. ]
  50. },
  51. {
  52. type: 'category',
  53. label: 'Layouts',
  54. items: [
  55. 'layout',
  56. 'component-layout',
  57. 'stack-layout',
  58. 'bottomTabs-layout',
  59. 'sideMenu-layout',
  60. 'splitView'
  61. ]
  62. },
  63. {
  64. type: 'category',
  65. label: 'Options',
  66. items: [
  67. 'options-api',
  68. 'options-root',
  69. 'bottomTabs-options',
  70. 'bottomTab-options',
  71. {
  72. 'type': 'category',
  73. 'label': 'Stack',
  74. 'items': [
  75. 'stack-options',
  76. 'title-options',
  77. 'subtitle-options',
  78. 'background-options',
  79. 'backButton-options',
  80. 'button-options',
  81. 'iconInsets-options',
  82. 'largeTitle-options'
  83. ]
  84. },
  85. 'statusBar-options',
  86. 'layout-options',
  87. 'overlay-options',
  88. 'sideMenu-options',
  89. 'sideMenuSide-options',
  90. 'splitView-options'
  91. ]
  92. },
  93. 'events-api'
  94. ]
  95. };