Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/whiteblackgoose/morefuncui
- Owner: WhiteBlackGoose
- License: mit
- Created: 2022-01-07T11:37:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-09T19:10:41.000Z (almost 3 years ago)
- Last Synced: 2024-11-01T13:42:00.595Z (17 days ago)
- Language: F#
- Homepage:
- Size: 879 KB
- Stars: 23
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)