| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | 
							- <!DOCTYPE html>
 - <html lang="en">
 - <head>
 -     <meta charset="UTF-8">
 -     <title>React Native Navigation v2 - truly native navigation for iOS and Android</title>
 -     <meta name="description" content="React Native Navigation v2 - truly native navigation for iOS and Android">
 -     <meta name="viewport"
 -           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
 -     <link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
 -     <link rel="shortcut icon" href=../_images/favicon.ico" type="image/x-icon">
 -     <link rel="icon" href="../_images/favicon.ico" type="image/x-icon">
 - </head>
 - <body>
 - <div id="app">
 -     <img src="https://raw.githubusercontent.com/wix/react-native-navigation/master/logo.png"
 -          alt="react-native-navigation logo">
 - </div>
 - </body>
 - <script>
 -     window.$docsify = {
 -         basePath: 'https://raw.githubusercontent.com/wix/react-native-navigation/v2/docs/',
 -         name: 'React Native Navigation v2',
 -         search: 'auto',
 -         themeColor: '#21B8F0',
 -         loadSidebar: true,
 -         loadNavbar: true,
 -         maxLevel: 4,
 -         subMaxLevel: 2,
 -         auto2top: true,
 -         ga: 'UA-XXXXX-Y',
 -         plugins: [
 -             function (hook) {
 -                 var footer = [
 -                     '<hr/>',
 -                     '<footer class="Test">',
 -                     `<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>`,
 -                     '</footer>'
 -                 ].join('');
 - 
 -                 hook.afterEach(function (html) {
 -                     return html + footer;
 -                 });
 -             }
 -         ]
 -     };
 - </script>
 - <script src="//unpkg.com/docsify/lib/docsify.js"></script>
 - <script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
 - <script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
 - <script src="//unpkg.com/docsify/lib/plugins/ga.js"></script>
 - </html>
 
 
  |