diff --git a/CHANGELOG.md b/CHANGELOG.md index d145eed3aa..d7dd427da9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +- Add missing Flow type exports for `ScrollView` and `NavigationContext` + ## [3.11.1] ## Fixes @@ -245,7 +247,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fix drawer accessibility label when drawer label is not a string - ## [3.0.5] - [2018-12-03](https://github.com/react-navigation/react-navigation/releases/tag/3.0.5) ## Fixes @@ -268,7 +269,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Accessibility labels on drawer items (https://github.com/react-navigation/react-navigation-drawer/pull/30) - ## [3.0.3] - [2018-11-30](https://github.com/react-navigation/react-navigation/releases/tag/3.0.3) ## Fixes diff --git a/flow/react-navigation.js b/flow/react-navigation.js index 2b789d1f14..5d1f6aafb8 100644 --- a/flow/react-navigation.js +++ b/flow/react-navigation.js @@ -1303,4 +1303,8 @@ declare module 'react-navigation' { navigation: NavigationScreenProp, screenProps?: {} ): Options; + + declare export var NavigationContext: React$Context<{}>; + + declare export var ScrollView: React$ComponentType<{}>; }