Skip to content

mrkvinter/sharp.compose

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sharp.Compose

SharpCompose is a modern way of creating UI by C#. This framework was inspired of Jetpack Compose.

[Composable]
private static void Counter() => Column(content: () =>
{
    var counter = Remember.Get(() => 0.AsMutableState());

    Text($"Current count: {counter.Value}");
    Button(() => counter.Value++, "Click me");
});

Example

You can explore example project here.

Disclaimer

It is early version of framework, so many things can will change in the future. Use this at your own risk.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages