| 28 | } |
| 29 | |
| 30 | export interface IInputBarProps extends TextInputProps, TextInputAndroidProps { |
| 31 | style: CustomStyleProp; |
| 32 | width?: number; |
| 33 | height?: number; |
| 34 | value?: string; |
| 35 | borderRadius?: number; |
| 36 | minHeight?: number; |
| 37 | maxHeight?: number; |
| 38 | textColor?: string; |
| 39 | multiline?: boolean; |
| 40 | shadowColor?: string; |
| 41 | placeholder?: string; |
| 42 | sendIconImageSource?: ISource; |
| 43 | secondaryIconImageSource?: ISource; |
| 44 | onChangeText?: (text: string) => void; |
| 45 | textInputStyle?: any; |
| 46 | backgroundColor?: string; |
| 47 | ImageComponent?: any; |
| 48 | spinnerType?: string; |
| 49 | spinnerSize?: number; |
| 50 | spinnerColor?: string; |
| 51 | spinnerStyle?: any; |
| 52 | spinnerVisibility?: boolean; |
| 53 | disableSendIcon?: boolean; |
| 54 | disableSecondaryIcon?: boolean; |
| 55 | onSendPress?: () => void; |
| 56 | secondaryIconOnPress?: () => void; |
| 57 | } |
| 58 | |
| 59 | interface IState {} |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected