react-native-navigation的迁移库

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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-modal',
  51. 'options-navigationBar',
  52. 'options-overlay',
  53. 'options-sideMenu',
  54. 'options-sideMenuSide',
  55. 'options-splitView'
  56. ]
  57. },
  58. 'events'
  59. ]
  60. };