Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/whiteblackgoose/morefuncui

Open-source collection of additional Avalonia.FuncUI components, wrappers of those of Avalonia
https://github.com/whiteblackgoose/morefuncui

Last synced: 10 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# More FuncUI

This is some collection of FuncUI components I maintain.

## MoreFuncUI.WebView

It's a wrapper of awesome [WebView](https://github.com/OutSystems/WebView).

Example of code:
```fs
WebView.create [
WebView.dock Dock.Top
WebView.address "https://github.com"
]
```

![screenshot for webview](./Samples/MoreFuncUI.WebView.Sample/screenshot.png)

## MoreFuncUI.AvaloniaEdit

It's a wrapper of awesome [AvaloniaEdit](https://github.com/AvaloniaUI/AvaloniaEdit).

Example of code:
```fs
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](./Samples/MoreFuncUI.AvaloniaEdit.Sample/TextEditor.screenshot.png)