-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed3338c
commit a147509
Showing
7 changed files
with
416 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
- Getting started | ||
- [Installation - iOS](/installation-ios) | ||
- [Installation - Android](/installation-android) | ||
- [Usage](/usage) | ||
<!-- | ||
- Guide | ||
- [Top Level API](/top-level-api) | ||
- [Screen API](/screen-api) | ||
- [Deep links](/deep-links) | ||
- [Android Specific Use Cases](/android-specific-use-cases) | ||
- [Third Party Libraries Support](/third-party-libraries-support) | ||
- Customization | ||
- [Styling the Navigator](/styling-the-navigator) | ||
- [Adding Buttons to the Navigator](/adding-buttons-to-the-navigator) | ||
- [Styling the Tab Bar](/styling-the-tab-bar) | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>React Native Navigation - truly native navigation for iOS and Android</title> | ||
<meta name="description" content="React Native Navigation - 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 = { | ||
repo: '', | ||
name: 'React Native Navigation', | ||
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> | ||
<script> | ||
if (typeof navigator.serviceWorker !== 'undefined') { | ||
navigator.serviceWorker.register('sw.js') | ||
} | ||
</script> | ||
</html> |
Oops, something went wrong.