react-native-navigation的迁移库

index.html 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>React Native Navigation - truly native navigation for iOS and Android</title>
  6. <meta name="description" content="React Native Navigation - truly native navigation for iOS and Android">
  7. <meta name="viewport"
  8. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  9. <link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
  10. <link rel="shortcut icon" href="_images/favicon.ico" type="image/x-icon">
  11. <link rel="icon" href="_images/favicon.ico" type="image/x-icon">
  12. </head>
  13. <body>
  14. <div id="app">
  15. <img src="https://raw.githubusercontent.com/wix/react-native-navigation/master/logo.png"
  16. alt="react-native-navigation logo">
  17. </div>
  18. </body>
  19. <script>
  20. window.$docsify = {
  21. repo: '',
  22. name: 'React Native Navigation',
  23. search: 'auto',
  24. themeColor: '#21B8F0',
  25. loadSidebar: true,
  26. loadNavbar: true,
  27. maxLevel: 4,
  28. subMaxLevel: 2,
  29. auto2top: true,
  30. ga: 'UA-XXXXX-Y',
  31. plugins: [
  32. function (hook) {
  33. var footer = [
  34. '<hr/>',
  35. '<footer class="Test">',
  36. `<span>Caught a mistake or want to contribute to the documentation? <a href="https://github.com/wix/react-native-navigation/tree/v2/docs" target="_blank">Edit documentation on Github!</a>.</span>`,
  37. '</footer>'
  38. ].join('');
  39. hook.afterEach(function (html) {
  40. return html + footer;
  41. });
  42. }
  43. ]
  44. };
  45. </script>
  46. <script src="//unpkg.com/docsify/lib/docsify.js"></script>
  47. <script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
  48. <script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
  49. <script src="//unpkg.com/docsify/lib/plugins/ga.js"></script>
  50. <script>
  51. if (typeof navigator.serviceWorker !== 'undefined') {
  52. navigator.serviceWorker.register('sw.js')
  53. }
  54. </script>
  55. </html>