(value: string)
| 428 | }; |
| 429 | |
| 430 | const handleChangeText = (value: string) => { |
| 431 | if (!editable || disabled) { |
| 432 | return; |
| 433 | } |
| 434 | |
| 435 | if (!isControlled) { |
| 436 | // Keep track of value in local state when input is not controlled |
| 437 | setUncontrolledValue(value); |
| 438 | } |
| 439 | rest.onChangeText?.(value); |
| 440 | }; |
| 441 | |
| 442 | const handleLayoutAnimatedText = React.useCallback( |
| 443 | (e: LayoutChangeEvent) => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…