Skip to content

Commit

Permalink
Merge pull request #17 from gabrieldelaparra/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
wieslawsoltes authored Apr 26, 2023
2 parents c9a4e30 + 2c5d17e commit 7b78abd
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,26 @@ Creating minimal [Avalonia](https://avaloniaui.net/) next generation (NXUI, next

https://user-images.githubusercontent.com/2297442/132313187-32f18c4b-e894-46db-9a9d-9de02f30835e.mp4

# Usage

# Requisites
### NXUI
```xml
<PackageReference Include="NXUI" Version="11.0.0-preview5" />
```
Additionally, depending on the application type:
### Desktop
``` xml
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview5" />
```

### Browser
``` xml
<PackageReference Include="Avalonia.Browser" Version="11.0.0-preview5" />
```

```
dotnet workload install wasm-tools
```
# Usage
```C#
Window Build() => Window().Content(Label().Content("NXUI"));

Expand Down

0 comments on commit 7b78abd

Please sign in to comment.