(args: Object)
| 419 | }; |
| 420 | |
| 421 | const handleBlur = (args: Object) => { |
| 422 | if (!editable) { |
| 423 | return; |
| 424 | } |
| 425 | |
| 426 | setFocused(false); |
| 427 | rest.onBlur?.(args); |
| 428 | }; |
| 429 | |
| 430 | const handleChangeText = (value: string) => { |
| 431 | if (!editable || disabled) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…