reactnativecomponents
Version:
React Native Components
22 lines (21 loc) • 604 B
TypeScript
import AbstractComponent from '../../AbstractComponent';
import { Props } from './Props';
/**
* @author 田尘殇Sean(sean.snow@live.com) create at 2017/12/20
*/
export default class TextField extends AbstractComponent<Props> {
static defaultProps: {
underlineShow: boolean;
};
state: any;
input: any;
constructor(props: any);
focus(): void;
getHeightStartValue(): any;
getHeightEndValue(): any;
handleFocus(e: any): void;
handleBlur(e: any): void;
renderFloatingLabel(): JSX.Element;
renderUnderline(): JSX.Element;
render(): JSX.Element;
}