mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-10 09:13:43 +08:00
BREAKING CHANGES: - Animated nodes are not from `react-native-reanimated`, which means custom tab bars need to be updated - Changed behaviour: `activeTintColor` and `inactiveTintColor` also controls opacity now - Removed props: `animationsEnabled`, `optimizationsEnabled` - Dropped support for React < 16.3, which means the minimum supported React Native version is 0.56 New features: - Added prop: `lazyPlaceholderComponent`
33 lines
878 B
JSON
33 lines
878 B
JSON
{
|
|
"name": "tabviewexample",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo android",
|
|
"ios": "expo ios"
|
|
},
|
|
"main": "App.js",
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^9.0.0",
|
|
"@react-navigation/core": "^3.1.1",
|
|
"@react-navigation/native": "^3.1.5",
|
|
"expo": "32.0.6",
|
|
"react": "16.5.0",
|
|
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
|
|
"react-native-safe-area-view": "^0.13.1",
|
|
"react-native-screens": "^1.0.0-alpha.22",
|
|
"react-native-tab-view": "^2.0.1",
|
|
"react-navigation": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"babel-plugin-module-resolver": "^3.2.0",
|
|
"babel-preset-expo": "^5.0.0",
|
|
"glob-to-regexp": "^0.4.0"
|
|
},
|
|
"resolutions": {
|
|
"**/hoist-non-react-statics": "2.5.0",
|
|
"**/react-native-tab-view": "2.0.1"
|
|
}
|
|
}
|