You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the MarkdownTextInput component is imported and rendered, the SafeAreaView is no longer respected:
return(<SafeAreaView><Text>should be safe</Text><MarkdownTextInputvalue={docValue}onChangeText={onInputChange}parser={parseExpensiMark}/></SafeAreaView>);
After commenting out the MarkdownTextInput:
return(<SafeAreaView><Text>should be safe</Text>{/* <MarkdownTextInput value={docValue} onChangeText={onInputChange} parser={parseExpensiMark} /> */}</SafeAreaView>);
The text was updated successfully, but these errors were encountered:
When the
MarkdownTextInput
component is imported and rendered, theSafeAreaView
is no longer respected:After commenting out the MarkdownTextInput:
The text was updated successfully, but these errors were encountered: