This is some collection of FuncUI components I maintain.
It's a wrapper of awesome WebView.
Example of code:
WebView.create [
WebView.dock Dock.Top
WebView.address "https://github.com"
]
It's a wrapper of awesome AvaloniaEdit.
Example of code:
TextEditor.create [
TextEditor.dock Dock.Left
TextEditor.document (TextDocument "let a = 5")
TextEditor.showLineNumbers true
TextEditor.background Brushes.Transparent
TextEditor.syntaxHighlightingLanguage (Some "fsharp")
TextEditor.syntaxHighlightingTheme ThemeName.DarkPlus
]