-
-
Notifications
You must be signed in to change notification settings - Fork 19
Home
Pavel Kasila edited this page Mar 21, 2021
·
4 revisions
SwiftyMonaco
is a wrapper for Monaco Editor from Microsoft.
Platform | State |
---|---|
macOS 11+ | seems to run relatively stable |
iPadOS 14+ | instable, not tested |
- Syntax highlighting
- Automatic interface theme detection
struct EditorView: View {
@State var text: String
var body: some View {
SwiftyMonaco(text: $text)
}
}