From adc6284c169e1c7024749ead564174326368f781 Mon Sep 17 00:00:00 2001 From: christianwen Date: Tue, 13 Aug 2024 16:50:01 +0700 Subject: [PATCH] add inputMode --- src/MarkdownTextInput.web.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/MarkdownTextInput.web.tsx b/src/MarkdownTextInput.web.tsx index a73a1287..8e5c1949 100644 --- a/src/MarkdownTextInput.web.tsx +++ b/src/MarkdownTextInput.web.tsx @@ -172,6 +172,7 @@ const MarkdownTextInput = React.forwardRef( autoFocus = false, onContentSizeChange, id, + inputMode }, ref, ) => { @@ -692,6 +693,7 @@ const MarkdownTextInput = React.forwardRef( placeholder={heightSafePlaceholder} spellCheck={spellCheck} dir={dir} + inputMode={inputMode} /> ); },