Flamui 0.1.0-alpha.4
dotnet add package Flamui --version 0.1.0-alpha.4
NuGet\Install-Package Flamui -Version 0.1.0-alpha.4
<PackageReference Include="Flamui" Version="0.1.0-alpha.4" />
paket add Flamui --version 0.1.0-alpha.4
#r "nuget: Flamui, 0.1.0-alpha.4"
// Install Flamui as a Cake Addin #addin nuget:?package=Flamui&version=0.1.0-alpha.4&prerelease // Install Flamui as a Cake Tool #tool nuget:?package=Flamui&version=0.1.0-alpha.4&prerelease
Flamui
A C# immediate mode desktop GUI framework.
The development of this project is currently paused.
The progress until the first release is tracked here. Prereleases are available on Nuget, see the "Hello World" example below.
Immediate mode means that you don't have to worry about state, the entire UI gets rebuilt every frame.
The framework uses Skia for the rendering and SDL2 to manage Windows, Input, Graphics Context, etc
Sample App Demo
https://github.com/FlurinBruehwiler/flamui/assets/47397416/cb77530a-873b-417c-aee7-f64d6607793c
Nuget Packages
Basic Hello World
dotnet new console
dotnet add package Flamui --prerelease
Program.cs
using Flamui;
var builder = FlamuiApp.CreateBuilder();
var app = builder.Build();
app.CreateWindow<RootComponent>("Hello World Window");
app.Run();
public class RootComponent : FlamuiComponent
{
public override void Build(Ui ui)
{
ui.Text("Hello World");
}
}
For more examples, look here. For general documentation, look in the /docs folder.
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
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 7.0.0)
- Microsoft.Extensions.Configuration.Json (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 7.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- ppy.SDL2-CS (>= 1.0.82)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.13)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Flamui:
Package | Downloads |
---|---|
Flamui.Components
A default set of components |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.0-alpha.4 | 58 | 6/26/2024 |
0.1.0-alpha.3 | 70 | 4/19/2024 |
0.1.0-alpha.2 | 80 | 3/8/2024 |
0.1.0-alpha.1 | 64 | 3/7/2024 |