UNPKG

antd-mobile-rn

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

24 lines (23 loc) 552 B
import React from 'react'; export interface TabBarProps { barTintColor?: string; tintColor?: string; unselectedTintColor?: string; /** default: false */ animated?: boolean; /** default: false */ swipeable?: boolean; /** rn android only**/ styles?: any; } export declare type TabIcon = React.ReactElement<any> | { uri: string; }; export interface TabBarItemProps { badge?: string | number; onPress?: () => void; selected?: boolean; icon?: TabIcon; selectedIcon?: TabIcon; title: string; }