UNPKG

antd-mobile-rn

Version:

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

21 lines (20 loc) 620 B
import React from 'react'; import { TabBarProps } from './PropsType'; import { ITabBarStyle } from './style/index.native'; export interface TabBarNativeProps extends TabBarProps { styles?: ITabBarStyle; } declare class TabBar extends React.Component<TabBarNativeProps, any> { static defaultProps: { barTintColor: string; tintColor: string; unselectedTintColor: string; styles: { [x: string]: import("react-native").RegisteredStyle<any>; }; }; static Item: any; getPanes(content: boolean): any[]; render(): JSX.Element; } export default TabBar;