UNPKG

@ant-design/react-native

Version:

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

19 lines (18 loc) 557 B
import React from 'react'; import { ImageRequireSource, ImageURISource } from 'react-native'; export interface TabBarProps { barTintColor?: string; tintColor?: string; unselectedTintColor?: string; animated?: boolean; swipeable?: boolean; } export declare type TabBarIcon = ImageURISource | ImageURISource[] | ImageRequireSource | React.ReactNode; export interface TabBarItemProps { badge?: string | number; onPress?: () => void; selected?: boolean; icon?: TabBarIcon; selectedIcon?: TabBarIcon; title: string; }