selectable text experiment

This commit is contained in:
Hailey
2024-01-11 00:38:47 -08:00
parent c75771047c
commit c6d2e54923
18 changed files with 787 additions and 2 deletions
@@ -0,0 +1,13 @@
import ExpoModulesCore
struct TextSegments: Decodable {
let segments: Array<TextSegment>
}
struct TextSegment: Decodable {
let index: Int
let text: String
let style: TextStyle?
let handlePress: Bool
let handleLongPress: Bool
}