Flamui.Components
0.1.0-alpha.3
This is a prerelease version of Flamui.Components.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Flamui.Components --version 0.1.0-alpha.3
NuGet\Install-Package Flamui.Components -Version 0.1.0-alpha.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Flamui.Components" Version="0.1.0-alpha.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Flamui.Components --version 0.1.0-alpha.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Flamui.Components, 0.1.0-alpha.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Flamui.Components as a Cake Addin #addin nuget:?package=Flamui.Components&version=0.1.0-alpha.3&prerelease // Install Flamui.Components as a Cake Tool #tool nuget:?package=Flamui.Components&version=0.1.0-alpha.3&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Flamui
A C# immediate mode desktop GUI framework.
This project is still in development!!! The progress until the first prerelease is tracked here.
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
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");
}
}
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Flamui (>= 0.1.0-alpha.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.0-alpha.4 | 63 | 6/26/2024 |
0.1.0-alpha.3 | 67 | 4/19/2024 |
0.1.0-alpha.2 | 69 | 3/8/2024 |
0.1.0-alpha.1 | 69 | 3/7/2024 |