{"id":50111492,"url":"https://github.com/knopp/rive_native","last_synced_at":"2026-05-23T12:35:19.421Z","repository":{"id":354196319,"uuid":"1220836774","full_name":"knopp/rive_native","owner":"knopp","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-27T14:09:58.000Z","size":9454,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-27T16:11:17.635Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/knopp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-25T11:58:54.000Z","updated_at":"2026-04-25T11:59:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/knopp/rive_native","commit_stats":null,"previous_names":["knopp/rive_native"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/knopp/rive_native","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopp%2Frive_native","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopp%2Frive_native/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopp%2Frive_native/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopp%2Frive_native/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/knopp","download_url":"https://codeload.github.com/knopp/rive_native/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knopp%2Frive_native/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33396576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T04:15:53.637Z","status":"ssl_error","status_checked_at":"2026-05-23T04:15:53.242Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-23T12:35:18.618Z","updated_at":"2026-05-23T12:35:19.412Z","avatar_url":"https://github.com/knopp.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rive_native\n\nRive Native is a Dart plugin that interfaces with the [core Rive C++ runtime](https://github.com/rive-app/rive-runtime), powered by the [Rive Renderer](https://rive.app/renderer).\n\nAdditional documentation:\n\n- [Rive Flutter getting started guide](https://rive.app/docs/runtimes/flutter/flutter)\n- [What is Rive Native](https://rive.app/docs/runtimes/flutter/rive-native)\n- [Migration guides](https://rive.app/docs/runtimes/flutter/migration-guide)\n\nFor up to date information on Rive Native, see the [official documentation](https://rive.app/docs/runtimes/flutter/rive-native).\n\n## Which Package to use\n\nWhile you can use `rive_native` on its own, we recommend using the [Rive Flutter package](https://pub.dev/packages/rive) (version `0.14.0+`). The `rive` package includes `rive_native` as a dependency and provides a more intuitive runtime API.\n\n## Getting started\n\n`rive_native` is not yet publicly available on GitHub but will be soon. For now, you can pull the source code and example by running:\n\n```bash\ndart pub unpack rive_native # Unpack the package source code and example app\ncd rive_native/example      # Navigate to the example folder\nflutter create .            # Create the platform folders\nflutter pub get             # Fetch dependencies\nflutter run                 # Run the example app\n```\n\nA higher-level declarative API is under development to simplify working with Rive graphics in Flutter.\n\nFor an example implementation, see the `rive_player.dart` file in `rive_native/example/rive_player.dart`.\n\n---\n\n## Platform support\n\n| Platform | Flutter Renderer | Rive Renderer |\n| -------- | ---------------- | ------------- |\n| iOS      | ✅               | ✅            |\n| Android  | ✅               | ✅            |\n| macOS    | ✅               | ✅            |\n| Windows  | ✅               | ✅            |\n| Linux    | ✅               | ✅            |\n| Web      | ✅               | ✅            |\n\n---\n\n## Feature support\n\nAll core Rive features are supported. See [Feature Support](https://rive.app/docs/feature-support) for more information.\n\n---\n\n## Troubleshooting\n\nThe required native libraries should be automatically downloaded during the build step (`flutter run` or `flutter build`). If you encounter issues, try the following:\n\n1. Run `flutter clean`\n2. Run `flutter pub get`\n3. Run `flutter run`\n\nAlternatively, you can manually run the `rive_native` setup script. In the root of your Flutter app, execute:\n\n```bash\ndart run rive_native:setup --verbose --clean --platform macos\n```\n\nThis will clean the `rive_native` setup and download the platform-specific libraries specified with the `--platform` flag. Refer to the **Platform Support** section above for details.\n\n---\n\n## Building `rive_native`\n\nBy default, prebuilt native libraries are downloaded and used. If you prefer to build the libraries yourself, use the `--build` flag with the setup script:\n\n```bash\nflutter clean # Important\ndart run rive_native:setup --verbose --clean --build --platform macos\n```\n\n\u003e **Note**: Building the libraries requires specific tooling on your machine. Additional documentation will be provided soon.\n\n---\n\n## Testing\n\nShared libraries are included in the download/build process. If you've done `flutter run` on the native platform, the libraries should already be available.\n\nOtherwise, manually download the prebuilt libraries by doing:\n\n```bash\ndart run rive_native:setup --verbose --clean --platform macos\n```\n\nSpecify the desired `--platform`, options are `macos`, `windows`, and `linux`.\n\nNow you can run `flutter test`.\n\nOptionally build the libraries if desired:\n\n```bash\ndart run rive_native:setup --verbose --clean --build --platform macos\n```\n\nIf you encounter issues using `rive_native` in your tests, please reach out to us for assistance.\n\n## Support\n\n- Reach out to us on our [Community](https://community.rive.app/feed)\n- File an issue on the [Rive Flutter repository](https://github.com/rive-app/rive-flutter/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknopp%2Frive_native","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknopp%2Frive_native","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknopp%2Frive_native/lists"}