react-native-navigation的迁移库

sidebars.js 819B

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