Update NavigationPlayground to 0.45.1, add stub react-nav flow definition

This commit is contained in:
Adam Miskiewicz
2017-07-03 17:02:46 -07:00
parent 9436d03fe8
commit ebf1e2e893
17 changed files with 4778 additions and 865 deletions

39
flow/react-navigation.js vendored Normal file
View File

@@ -0,0 +1,39 @@
/**
* React Navigation Flow library defintion
*/
declare module 'react-navigation' {
declare var createNavigationContainer: any;
declare var StateUtils: any;
declare var addNavigationHelpers: any;
declare var NavigationActions: any;
declare var createNavigator: any;
declare var StackNavigator: any;
declare var TabNavigator: any;
declare var DrawerNavigator: any;
declare var StackRouter: any;
declare var TabRouter: any;
declare var Transitioner: any;
declare var CardStackTransitioner: any;
declare var CardStack: any;
declare var Card: any;
declare var Header: any;
declare var HeaderTitle: any;
declare var HeaderBackButton: any;
declare var DrawerView: any;
declare var DrawerItems: any;
declare var TabView: any;
declare var TabBarTop: any;
declare var TabBarBottom: any;
declare var withNavigation: any;
}