Rive.Blazor.Wasm 1.0.1

dotnet add package Rive.Blazor.Wasm --version 1.0.1                
NuGet\Install-Package Rive.Blazor.Wasm -Version 1.0.1                
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="Rive.Blazor.Wasm" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rive.Blazor.Wasm --version 1.0.1                
#r "nuget: Rive.Blazor.Wasm, 1.0.1"                
#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 Rive.Blazor.Wasm as a Cake Addin
#addin nuget:?package=Rive.Blazor.Wasm&version=1.0.1

// Install Rive.Blazor.Wasm as a Cake Tool
#tool nuget:?package=Rive.Blazor.Wasm&version=1.0.1                

Rive.Blazor.Wasm

A Blazor component for Rive animations.

Installation

Install the package from NuGet:

dotnet add package Rive.Blazor.Wasm

Usage

Add the RivePlayer component to your Blazor component:

<RivePlayer
	File="https://cdn.rive.app/animations/vehicles.riv"
	Width="400"
	Height="400"
	Autoplay="true"
	Artboard="Vehicles"
	StateMachines="vehicles"
/>

The File parameter is the URL of the Rive file to load.

The Width and Height parameters are the dimensions of the canvas.

The Autoplay parameter is a boolean that indicates whether the animation should start automatically.

The Artboard parameter is the name of the artboard to use.

The StateMachines parameter is the name of the state machine to use.

Other features are currently not supported. Passing additional parameters to the component will be forwarded to the canvas element.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

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
1.0.1 234 9/30/2024
1.0.0 99 9/30/2024

# Changelog
## v1.0.1
- No changes; release test
## v1.0.0
- Initial release
- Added `RivePlayer` component