react-native-navigation的迁移库

sidebars.js 849B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. 'functionalComponents'
  16. ],
  17. Layouts: [
  18. 'stack',
  19. 'bottomTabs',
  20. 'sideMenu',
  21. 'externalComponent',
  22. ],
  23. Hierarchy: [
  24. 'root',
  25. 'modal',
  26. 'overlay'
  27. ],
  28. Styling: [
  29. 'style-theme',
  30. 'style-statusBar',
  31. 'style-orientation',
  32. 'style-animations',
  33. 'style-fonts',
  34. 'style-constants'
  35. ],
  36. 'Third party integration': [
  37. 'third-party-react-context',
  38. 'third-party-mobx'
  39. ],
  40. Meta: [
  41. 'meta-contributing'
  42. ]
  43. }
  44. };