We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0879e09 commit b412a8cCopy full SHA for b412a8c
src/components/SavePresetNameModal.tsx
@@ -110,11 +110,11 @@ export const SavePresetNameModal: React.FC<Props> = ({
110
inboundOpacity.setValue(1);
111
outboundOpacity.setValue(1);
112
113
- // モーダルアニメーション(180ms)とKeyboardAvoidingViewのレイアウト確定を待ってからフォーカスする
+ // モーダルアニメーション(180ms)の完了を待ってからフォーカスする
114
if (Platform.OS === 'ios') {
115
const timer = setTimeout(() => {
116
textInputRef.current?.focus();
117
- }, 300);
+ }, 180);
118
return () => clearTimeout(timer);
119
}
120
0 commit comments