-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: rich text editor #892
Conversation
@@ -1,31 +1,32 @@ | |||
import React from 'react'; | |||
|
|||
import { Tabs } from 'expo-router'; | |||
import { SafeAreaProvider } from 'react-native-safe-area-context'; |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note
@@ -1,18 +1,21 @@ | |||
import { StyleSheet, Text, View } from 'react-native'; | |||
import { StyleSheet, Text, View, SafeAreaView } from 'react-native'; |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note
import { StyleSheet, Text, View, SafeAreaView } from 'react-native'; | ||
import React from "react"; | ||
import {Editor} from "../../components/editor/editor"; | ||
import { SafeAreaProvider } from 'react-native-safe-area-context'; |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note
@@ -0,0 +1,38 @@ | |||
import {BubbleMenu} from '@tiptap/react'; | |||
import { Editor } from '@tiptap/react' | |||
import { Bold, Heading1, Heading2, Italic, ListIcon, ListOrdered, UnderlineIcon } from 'lucide-react'; |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note
@@ -12,6 +11,7 @@ | |||
import { ThemeProvider } from '@shopify/restyle'; | |||
|
|||
import { store } from '@/store/store'; | |||
import { SafeAreaProvider } from 'react-native-safe-area-context'; |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note
could you add videos of the editors to the PR? Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some nits the LGMT
keep up the great work on the frontend @in-mai-space 🐐
@@ -19,7 +19,7 @@ node_modules | |||
backend/tests/api/__debug_* | |||
.env.prod | |||
|
|||
frontend/mobile/ios/ | |||
# frontend/mobile/ios/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we add this line back in?
This reverts commit ef01034.
Description
Link to Ticket
Rich text editor for mobile and dashboard using Tiptap and Tentap
How Has This Been Tested?
No tests
Checklist