https://github.com/kickeddroid/fl-ipfs
https://github.com/kickeddroid/fl-ipfs
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/kickeddroid/fl-ipfs
- Owner: KickedDroid
- Created: 2022-03-27T16:21:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-28T23:19:08.000Z (over 4 years ago)
- Last Synced: 2025-02-08T01:43:18.276Z (over 1 year ago)
- Language: C++
- Size: 212 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flutter_rust_bridge_template
This repository serves as a template for Flutter projects calling into native Rust
libraries via `flutter_rust_bridge`.
## Getting Started
To begin, ensure that you have a working installation of the following items:
- [Flutter SDK](https://docs.flutter.dev/get-started/install)
- [Rust language](https://rustup.rs/)
- Appropriate [Rust targets](https://rust-lang.github.io/rustup/cross-compilation.html) for cross-compiling to your device
- For Android targets:
- Install [cargo-ndk](https://github.com/bbqsrc/cargo-ndk#installing)
- Install Android NDK 22, then put its path in one of the `gradle.properties`, e.g.:
```
echo "ANDROID_NDK=.." >> ~/.gradle/gradle.properties
```
- Web is not supported yet.
Then go ahead and run `flutter run`! When you're ready, refer to our documentation
[here](https://fzyzcjy.github.io/flutter_rust_bridge/index.html)
to learn how to write and use binding code.