Metadata-Version: 2.2
Name: flet-rive
Version: 0.1.0.dev1
Summary: Rive control for Flet
Author-email: Flet contributors <hello@flet.dev>
Project-URL: Homepage, https://flet.dev
Project-URL: Documentation, https://flet.dev/docs/controls/rive/
Project-URL: Repository, https://github.com/flet-dev/flet-rive
Project-URL: Issues, https://github.com/flet-dev/flet-rive/issues
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: flet>=0.25.2

# Rive control for Flet

`Rive` control for Flet.

## Usage

Add `flet-rive` as dependency (`pyproject.toml` or `requirements.txt`) to your Flet project.

## Example

```py

import flet as ft

import flet_rive as fr

def main(page):
    page.add(
        fr.Rive(
            "https://cdn.rive.app/animations/vehicles.riv",
            placeholder=ft.ProgressBar(),
            width=300,
            height=200,
        )
    )

ft.app(main)
```
