From 7d207b6b7dd782e563da2aac19f91dfefbef530b Mon Sep 17 00:00:00 2001 From: Augustas Eidikis <43470011+AugustasFriend@users.noreply.github.com> Date: Fri, 22 Dec 2023 12:56:21 +0100 Subject: [PATCH] fix: include onLayout in TextInput render props --- src/components/TextInput/types.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/TextInput/types.tsx b/src/components/TextInput/types.tsx index 6a8029934f..50863082ed 100644 --- a/src/components/TextInput/types.tsx +++ b/src/components/TextInput/types.tsx @@ -58,6 +58,7 @@ export type RenderProps = { onFocus?: (args: any) => void; onBlur?: (args: any) => void; underlineColorAndroid?: string; + onLayout?: (args: any) => void; style: any; multiline?: boolean; numberOfLines?: number;