Input field needs to be tapped twice in React Native
I've two input fields in my application. <ScrollView> <View> <Input placeholder={`Enter the amount:`} keyboardType="number-pad" showSoftInputOnFocus={false} onFocusCustom={() => setShowCalulator(true)} onBlurCustom={() => setShowCalulator(false)} caretHidden={true} /> <Input placeholder="Enter a short description: (Optional)" multiline onBlurCustom={() => Keyboard.dismiss()} /> </View> </ScrollView> When we click the…