Flamui.Components 0.1.0-alpha.4

This is a prerelease version of Flamui.Components.
dotnet add package Flamui.Components --version 0.1.0-alpha.4                
NuGet\Install-Package Flamui.Components -Version 0.1.0-alpha.4                
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.4" />                
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.4                
#r "nuget: Flamui.Components, 0.1.0-alpha.4"                
#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.4&prerelease

// Install Flamui.Components as a Cake Tool
#tool nuget:?package=Flamui.Components&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 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

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