Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

187 Ten Tap #190

Merged
merged 9 commits into from
Nov 5, 2024
6 changes: 4 additions & 2 deletions lib/screens/EditNoteScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -574,12 +574,14 @@ const EditNoteScreen: React.FC<EditNoteScreenProps> = ({
<View style={exampleStyles.richTextContainer}>
<RichText
editor={editor}
style={[exampleStyles.editor, {backgroundColor: Platform.OS == "android" && "white"}]} // Apply styling here
style={[exampleStyles.editor, {backgroundColor: Platform.OS == "android" && theme.tertiaryColor}]} // Apply styling here
ademDurakovic marked this conversation as resolved.
Show resolved Hide resolved
/>

</View>
ademDurakovic marked this conversation as resolved.
Show resolved Hide resolved
<Toolbar editor={editor} />


</KeyboardAvoidingView>

</SafeAreaView>
<LoadingModal visible={isUpdating} />
</SafeAreaView>
Expand Down
Loading