Merge pull request #23601 from danilobuerger/patch-2

[react-native-navigation] Added iconInsets to tabs
This commit is contained in:
Daniel Rosenwasser
2018-02-13 16:48:21 -08:00
committed by GitHub
+8
View File
@@ -40,10 +40,18 @@ export interface TabBasedApp {
animationType?: 'none' | 'slide-down' | 'fade';
}
export interface IconInsets {
top?: number;
left?: number;
bottom?: number;
right?: number;
}
export interface TabScreen {
label?: string;
screen: string;
icon?: any;
iconInsets?: IconInsets;
selectedIcon?: any;
title?: string;
navigatorStyle?: NavigatorStyle;