[react-native-navigation] Added iconInsets to tabs

This commit is contained in:
Danilo Bürger
2018-02-13 12:30:27 +01:00
parent 60f5ee3a3c
commit 844a1ea972
+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;