mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-04-27 21:08:02 +08:00
chore: update dependencies
This commit is contained in:
@@ -9,7 +9,9 @@ import * as TransitionPresets from './vendor/TransitionConfigs/TransitionPresets
|
||||
export { default as createStackNavigator } from './navigators/createStackNavigator';
|
||||
|
||||
export const Assets = [
|
||||
// eslint-disable-next-line import/no-commonjs
|
||||
require('./vendor/views/assets/back-icon.png'),
|
||||
// eslint-disable-next-line import/no-commonjs
|
||||
require('./vendor/views/assets/back-icon-mask.png'),
|
||||
];
|
||||
|
||||
|
||||
@@ -126,7 +126,6 @@ Array [
|
||||
}
|
||||
/>
|
||||
<View
|
||||
progress={1}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -281,7 +280,6 @@ Array [
|
||||
}
|
||||
/>
|
||||
<View
|
||||
progress={1}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
|
||||
@@ -126,7 +126,6 @@ Array [
|
||||
}
|
||||
/>
|
||||
<View
|
||||
progress={1}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -424,7 +423,6 @@ Array [
|
||||
}
|
||||
/>
|
||||
<View
|
||||
progress={1}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import { StyleProp, ViewStyle } from 'react-native';
|
||||
import { StackNavigationOptions, StackNavigationConfig } from '../vendor/types';
|
||||
|
||||
type Validation = {
|
||||
@@ -17,7 +18,10 @@ const validations: Record<string, Validation> = {
|
||||
c.transparentCard
|
||||
? {
|
||||
...o,
|
||||
cardStyle: [{ backgroundColor: 'transparent' }, o.cardStyle],
|
||||
cardStyle: [
|
||||
{ backgroundColor: 'transparent' },
|
||||
o.cardStyle,
|
||||
] as StyleProp<ViewStyle>,
|
||||
}
|
||||
: o,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user