/MoreFuncUI

Open-source collection of additional Avalonia.FuncUI components, wrappers of those of Avalonia

Primary LanguageF#MIT LicenseMIT

More FuncUI

This is some collection of FuncUI components I maintain.

MoreFuncUI.WebView

It's a wrapper of awesome WebView.

Example of code:

WebView.create [
    WebView.dock Dock.Top
    WebView.address "https://github.com"
]

screenshot for webview

MoreFuncUI.AvaloniaEdit

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
]

screenshot for AvaloniaEdit