native-navigation
native-navigation copied to clipboard
Native navigation library for React Native applications
Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.2 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...
Bumps [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader) from 1.1.3 to 1.6.3. Release notes Sourced from cocoapods-downloader's releases. 1.6.3 Enhancements None. Bug Fixes None. 1.6.2 Enhancements None. Bug Fixes None. 1.6.1 Enhancements None. Bug Fixes None....
In `create-react-native-app` entry file looks like: ``` import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; export default class App extends React.Component { render() { return (...
When talking about natively build navigators for React Native the main problem with them have been compatibility with Android when activity is destroyed. When I turn "Don't keep activities" to...
A common problem with apps that are using this lib is that they lose their navigation stack after their ReactActivity is closed. Besides the inconvenience, one major problem of this...
At some point, the `backStacks` object can be null, making `backStacks.peek()` crash the app. I could not put my finger exactly on why this happens, but I suspect it's some...
Adds the `onHostDestroy` method call. Lacking this call can cause problems when using features that rely on your React lifecycle. Besides, we're already calling `onHostPause` and `onHostResume` so, for the...
Migrate to Swift 4.1. Now we can build native-navigation latest Xcode(v9.3).
Hi, First of all thanks for this great library. I really like the Shared Element transitions which are working really great for me, which would be a reason to use...
I have been trying it set the navigation up like this: https://github.com/airbnb/native-navigation#installation Here is my AppDelegate.h: ```text #import #import @import NativeNavigation; @interface AppDelegate : UIResponder @property (nonatomic, strong) UIWindow *window;...