https://github.com/jsuarezruiz/rive-maui
.NET MAUI runtime for Rive
https://github.com/jsuarezruiz/rive-maui
dotnet dotnet-maui maui rive
Last synced: 10 months ago
JSON representation
.NET MAUI runtime for Rive
- Host: GitHub
- URL: https://github.com/jsuarezruiz/rive-maui
- Owner: jsuarezruiz
- License: mit
- Created: 2024-01-03T11:21:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-07T11:16:13.000Z (over 2 years ago)
- Last Synced: 2024-05-02T05:31:48.240Z (about 2 years ago)
- Topics: dotnet, dotnet-maui, maui, rive
- Language: C#
- Homepage:
- Size: 25.8 MB
- Stars: 36
- Watchers: 7
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rive .NET MAUI
RivePlayer control for .NET MAUI. Based on https://github.com/rive-app/rive-sharp
_(Work in progress)_


Examples:
- Viewer.csproj: A simple .NET MAUI app that draws 4 .riv files with pointer events.
## Building
You just need to fetch the rive-cpp submodule:
```
git submodule update --init
```
To build, you first need to generate rive.vcproj, the project that builds the
native rive.dll:
```
cd Native
premake5.exe vs2022
```
NOTE: Download [premake5.exe](https://premake.github.io/download/).
After that, you should be able to open RiveSharpSample.sln in Visual Studio, build, and run!