react-native-navigation的迁移库

sidebarsApi.js 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. module.exports = {
  2. api: [
  3. {
  4. type: 'category',
  5. label: 'Navigation',
  6. items: [
  7. 'component',
  8. 'root',
  9. 'stack',
  10. 'modal',
  11. 'overlay'
  12. ]
  13. },
  14. {
  15. type: 'category',
  16. label: 'Layouts',
  17. items: [
  18. 'layout-layout',
  19. 'layout-component',
  20. 'layout-stack',
  21. 'layout-bottomTabs',
  22. 'layout-sideMenu',
  23. 'layout-splitView'
  24. ]
  25. },
  26. {
  27. type: 'category',
  28. label: 'Options',
  29. items: [
  30. 'options-api',
  31. 'options-root',
  32. 'options-bottomTabs',
  33. 'options-bottomTab',
  34. {
  35. 'type': 'category',
  36. 'label': 'Stack',
  37. 'items': [
  38. 'options-stack',
  39. 'options-title',
  40. 'options-subtitle',
  41. 'options-background',
  42. 'options-backButton',
  43. 'options-button',
  44. 'options-iconInsets',
  45. 'options-largeTitle'
  46. ]
  47. },
  48. 'options-statusBar',
  49. 'options-layout',
  50. 'options-overlay',
  51. 'options-sideMenu',
  52. 'options-sideMenuSide',
  53. 'options-splitView'
  54. ]
  55. },
  56. 'events'
  57. ]
  58. };