Avalonia.FuncUI
1.5.1
Prefix Reserved
dotnet add package Avalonia.FuncUI --version 1.5.1
NuGet\Install-Package Avalonia.FuncUI -Version 1.5.1
<PackageReference Include="Avalonia.FuncUI" Version="1.5.1" />
paket add Avalonia.FuncUI --version 1.5.1
#r "nuget: Avalonia.FuncUI, 1.5.1"
// Install Avalonia.FuncUI as a Cake Addin #addin nuget:?package=Avalonia.FuncUI&version=1.5.1 // Install Avalonia.FuncUI as a Cake Tool #tool nuget:?package=Avalonia.FuncUI&version=1.5.1
<h1 align="center"><img src="github/img/logo/FuncUI_Boxed.png" width="32px" alt="Avalonia FuncUI"> Avalonia FuncUI </h1>
<p align="center">Develop cross-platform GUI Applications using <a href="https://fsharp.org">F#<a> and <a href="https://github.com/AvaloniaUI/Avalonia">AvaloniaUI</a>!</p> <p align="center"> <img src="https://img.shields.io/github/languages/top/fsprojects/Avalonia.FuncUI" alt="GitHub top language"> <img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/fsprojects/Avalonia.FuncUI"> <img src="https://img.shields.io/github/license/fsprojects/Avalonia.FuncUI"> <img alt="Nuget (with prereleases)" src="https://img.shields.io/nuget/vpre/Avalonia.FuncUI?color=green&label=package%20Avalonia.FuncUI"> </p><br>
About
FuncUI is a thin layer built on top of AvaloniaUI. It contains abstractions for writing UI applications in different programming styles. It also contains a component & state management system.
FuncUI mostly consists of:
- Virtual DOM
- View DSL
- Component model
Resources
💨 Getting started
📚 Documentation
📓 Examples
Contributing
Please contribute to this library through issue reports, pull requests, code reviews, documentation, and discussion.
Examples
Example using components
A simple counter made with the component library:
type Components =
static member Counter () =
Component (fun ctx ->
let state = ctx.useState 0
DockPanel.create [
DockPanel.children [
Button.create [
Button.onClick (fun _ -> state.Set(state.Current - 1))
Button.content "click to decrement"
]
Button.create [
Button.onClick (fun _ -> state.Set(state.Current + 1))
Button.content "click to increment"
]
TextBlock.create [
TextBlock.dock Dock.Top
TextBlock.text (string state.Current)
]
]
]
)
Find more examples using components in the Components Examples folder.
Example using Elmish
The same counter as above but using the Avalonia.FuncUI.Elmish
package:
module Counter =
type CounterState = { count : int }
let init = { count = 0 }
type Msg = Increment | Decrement
let update (msg: Msg) (state: CounterState) : CounterState =
match msg with
| Increment -> { state with count = state.count + 1 }
| Decrement -> { state with count = state.count - 1 }
let view (state: CounterState) (dispatch): IView =
DockPanel.create [
DockPanel.children [
Button.create [
Button.onClick (fun _ -> dispatch Increment)
Button.content "click to increment"
]
Button.create [
Button.onClick (fun _ -> dispatch Decrement)
Button.content "click to decrement"
]
TextBlock.create [
TextBlock.dock Dock.Top
TextBlock.text (sprintf "the count is %i" state.count)
]
]
]
Find more examples using Elmish in the Elmish Examples folder
Maintainer(s)
The current co-maintainers of Avalonia.FuncUI are
- @Numpsy
- @JordanMarr
- @sleepyfran
- @JaggerJo (project originator)
The default maintainer account for projects under "fsprojects" is @fsprojectsgit - F# Community Project Incubation Space (repo management)
Commercial Support
Please reach out to mail@jaggerjo.com if you need a commercial support contract or are interested in contract work.
Star History
<a href="https://star-history.com/#fsprojects/Avalonia.FuncUI&Date"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=fsprojects/Avalonia.FuncUI&type=Date&theme=dark" /> <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=fsprojects/Avalonia.FuncUI&type=Date" /> <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=fsprojects/Avalonia.FuncUI&type=Date" /> </picture> </a>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Avalonia (>= 11.1.0)
- Avalonia.Controls.DataGrid (>= 11.1.0)
- FSharp.Core (>= 6.0.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Avalonia.FuncUI:
Package | Downloads |
---|---|
Avalonia.FuncUI.Elmish
Elmish integration for Avalonia.FuncUI |
|
SilkyFowl.Avalonia.FuncUI.LiveView
Live fs/fsx previewer for Avalonia.FuncUI. |
|
Navs.FuncUI
Package Description |
|
FluentAvalonia.FuncUI.Bindings
FluentAvalonia.FuncUI.Bindings is a library that integrates FluentAvalonia with Avalonia.FuncUI. It contains bindings that enable the use of FluentAvalonia's controls in an F# context offered by Avalonia.FuncUI. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Avalonia.FuncUI:
Repository | Stars |
---|---|
AvaloniaUI/Live.Avalonia
In-app live reload for Avalonia applications.
|
Version | Downloads | Last updated |
---|---|---|
1.5.1 | 680 | 9/5/2024 |
1.5.0 | 330 | 8/12/2024 |
1.4.0 | 739 | 4/26/2024 |
1.3.0 | 943 | 2/23/2024 |
1.2.0 | 641 | 1/6/2024 |
1.1.0 | 869 | 10/23/2023 |
1.0.2 | 188 | 10/22/2023 |
1.0.1 | 1,276 | 8/8/2023 |
1.0.0 | 1,595 | 7/6/2023 |
1.0.0-rc1.1.1 | 146 | 6/26/2023 |
1.0.0-rc1.1.0 | 731 | 6/20/2023 |
0.6.0-preview9.1 | 373 | 4/2/2023 |
0.6.0-preview9 | 343 | 3/10/2023 |
0.6.0-preview8 | 219 | 2/26/2023 |
0.6.0-preview7 | 552 | 1/26/2023 |
0.6.0-preview6.1 | 133 | 1/23/2023 |
0.6.0-preview6 | 201 | 1/22/2023 |
0.6.0-preview5 | 237 | 1/19/2023 |
0.6.0-preview4 | 235 | 1/15/2023 |