Flamui 0.1.0-alpha.3

This is a prerelease version of Flamui.
dotnet add package Flamui --version 0.1.0-alpha.3
NuGet\Install-Package Flamui -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" 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 --version 0.1.0-alpha.3
#r "nuget: Flamui, 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 as a Cake Addin
#addin nuget:?package=Flamui&version=0.1.0-alpha.3&prerelease

// Install Flamui as a Cake Tool
#tool nuget:?package=Flamui&version=0.1.0-alpha.3&prerelease

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 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.

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.3 44 4/19/2024
0.1.0-alpha.2 61 3/8/2024
0.1.0-alpha.1 47 3/7/2024