bmorphism / flutter_rust_bridge

High-level memory-safe binding generator for Flutter/Dart <-> Rust

Home Page:https://fzyzcjy.github.io/flutter_rust_bridge/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_rust_bridge: High-level memory-safe binding generator for Flutter/Dart <-> Rust

Rust Package Flutter Package Stars CI Example Codacy Badge

Logo

Want to combine the best between Flutter, a cross-platform hot-reload rapid-development UI toolkit, and Rust, a language empowering everyone to build reliable and efficient software? Here it comes!

πŸš€ Advantages

  • Memory-safe: Never need to think about malloc/free.
  • Feature-rich: enums with values, platform-optimized Vec, possibly recursive struct, zero-copy big arrays, opaque types on arbitrary structs/classes, Stream (iterator) abstraction, error (Result) handling, cancellable tasks, concurrency control, and more. See full features here.
  • Async programming: Rust code will never block the Flutter. Call Rust naturally from Flutter's main isolate (thread); sync mode also equally supported.
  • Lightweight: This is not a huge framework that includes everything, so you are free to use your favorite Flutter and Rust libraries. For example, state-management with Flutter library (e.g. MobX) can be elegant and simple (contrary to implementing in Rust); implementing a photo manipulation algorithm in Rust will be fast and safe (countrary to implementing in Flutter).
  • Cross-platform: Android, iOS, Windows, Linux, MacOS, and Web.
  • Easy to code-review & convince yourself: This package simply simulates how humans write boilerplate code. If you want to convince yourself (or your team) that it is safe, there is not much code to look at. No magic at all! (More about safety concerns.)
  • Fast: It is only a thin (though feature-rich) wrapper, without overhead such as protobuf serialization, thus performant. (More benchmarks later) (Throw away components like thread-pool to make it even faster)
  • Pure-Dart compatible: Despite the name, this package is 100% compatible with pure Dart.

πŸ’‘ User Guide

Check out the user guide for show-me-the-code, tutorials, features and much more.

πŸ“Ž P.S. Achieve ~60 FPS, no matter how janky the Flutter app was due to build/layout

Here is my another open-source library :) https://github.com/fzyzcjy/flutter_smooth.

✨ Contributors

All Contributors

Thanks goes to these wonderful people (emoji key following all-contributors specification):

fzyzcjy
fzyzcjy

πŸ’» πŸ“– πŸ’‘ πŸ€” 🚧
Viet Dinh
Viet Dinh

πŸ’» ⚠️ πŸ“–
Joshua Wade
Joshua Wade

πŸ’»
Marcel
Marcel

πŸ’»
rustui
rustui

πŸ“–
Michael Bryan
Michael Bryan

πŸ’»
bus710
bus710

πŸ“–
Sebastian Urban
Sebastian Urban

πŸ’»
Daniel
Daniel

πŸ’»
Kevin Li
Kevin Li

πŸ’» πŸ“–
Patrick Auernig
Patrick Auernig

πŸ’»
Anton Lazarev
Anton Lazarev

πŸ’»
Unoqwy
Unoqwy

πŸ’»
Febrian Setianto
Febrian Setianto

πŸ“–
syndim
syndim

πŸ’»
sagu
sagu

πŸ’» πŸ“–
Ikko Ashimine
Ikko Ashimine

πŸ“–
alanlzhang
alanlzhang

πŸ’» πŸ“–
Sai Chaitanya
Sai Chaitanya

πŸ’»
Ares Andrew
Ares Andrew

πŸ“–
raphaelrobert
raphaelrobert

πŸ“–
thomas725
thomas725

πŸ“–
Daniel Porteous (dport)
Daniel Porteous (dport)

πŸ“–
Wouter Ensink
Wouter Ensink

πŸ“–
老董
老董

πŸ’» πŸ“–
Lattice 0
Lattice 0

πŸ’» πŸ“–
orange soeur
orange soeur

πŸ“–
Rom's
Rom's

πŸ’» πŸ“–
Cupnfish
Cupnfish

πŸ’»
SoLongAndThanksForAllThePizza
SoLongAndThanksForAllThePizza

πŸ’» πŸ“–
Sam Nystrom
Sam Nystrom

πŸ“–
hsfzxjy
hsfzxjy

πŸ’»
muji
muji

πŸ“–
Zaitam
Zaitam

πŸ’»
Alex Procelewski
Alex Procelewski

πŸ“–
Vincent Herlemont
Vincent Herlemont

πŸ’»
CicadaCinema
CicadaCinema

πŸ’» πŸ“–
rogurotus
rogurotus

πŸ’» πŸ“–
huang12zheng
huang12zheng

πŸ’» πŸ“–
Sven-Hendrik Haase
Sven-Hendrik Haase

πŸ“–
Nicolas Gasull
Nicolas Gasull

πŸ’»
codercengiz
codercengiz

πŸ’»
Fabian LΓΆschner
Fabian LΓΆschner

πŸ’»
Gregory Conrad
Gregory Conrad

πŸ“– πŸ’»
Roman Zaynetdinov
Roman Zaynetdinov

πŸ“–
jsonmona
jsonmona

πŸ’»
Chris Ohk
Chris Ohk

πŸ“–
._.
._.

πŸ“–
elliotsayes
elliotsayes

πŸ“–
Kim Dong-Hyun
Kim Dong-Hyun

πŸ’» πŸ“–
Alex Gorichev
Alex Gorichev

πŸ“–

More specifically, thanks for all these contributions:

  • Desdaemon: Support not only simple enums but also enums with fields which gets translated to native enum or freezed class in Dart. Support the Option type as nullable types in Dart. Support Vec of Strings type. Support comments in code. Add marker attributes for future usage. Add Linux and Windows support for with-flutter example, and make CI works for that. Avoid parameter collision. Overhaul the documentation and add several chapters to demonstrate configuring a Flutter+Rust project in all five platforms. Refactor command module. Precompiled binary CI workflow. Fix bugs. Add support for the Web platform, parallel to the existing mobile/desktop platforms, via WASM and JavaScript as intermediate values. GitHub retry actions. Implement draft of opaque types. Refactor Boxed and Option.
  • rogurotus: Add Rust opaque types, enabling arbitrary Rust structs to be used as opaque Dart objects by generating wrappers and raw Arc pointers, as well as Dart opaque types, allowing to use any Dart objects in Rust code. Extend SyncReturn for more types. Fix generation bug. Fix SyncReturn. Migrate to dart-sys. Update CI. Fix linters.
  • ngasull: Make sync mode support whatever types that classical async mode supports. Bump sdk.
  • SecondFlight: Allow structs and enums to be imported from other files within the crate by creating source graph. Auto-create relevant dir. Fix store_dart_post_cobject error with ffigen 6.0.
  • Unoqwy: Add struct mirrors, such that types in the external crates can be imported and used without redefining and copying.
  • antonok-edm: Avoid converting syn types to strings before parsing to improve code and be more robust.
  • lattice0: Support methods, such that Rust struct impls can be converted to Dart class methods. StreamSink at any argument.
  • sagudev: Make code generator a lib. Add error types. Depend on cbindgen. Fix LLVM paths. Update deps. Fix CI errors.
  • surban: Support unit return type. Skip unresolvable modules. Ignore prefer_const_constructors. Non-final Dart fields.
  • Roms1383: Fix build_runner calling bug. Remove global ffigen dependency. Improve version check. Fix enum name-variant conflicts. Support Chrono date time and UUID types. Migrate to Rust 1.64 workspace. Update and refactor CI. Update header comments. Code cleanup.
  • GregoryConrad: Add doc to setup frb inside a Dart/Flutter library.
  • trobanga: Add support for [T;N] structs. Add usize support. Add a cmd argument. Separate dart tests.
  • dbsxdbsx: Allow generating multiple Rust and Dart files. Fix lint. Update doc. Add logging.
  • SoLongAndThanksForAllThePizza: Refactor and enhance SyncReturn to support more types.
  • huang12zheng: Support type aliases and nested ones. Tweak code generation.
  • hsfzxjy: Fix SyncReturn use-after-free bug.
  • Cupnfish: Support arrays as function parameters. Allow multi mirror.
  • temeddix: Fix broken CI. Custom num workers. Update doc.
  • alanlzhang: Add generation for Dart metadata. Enhance module parser.
  • Zaitam: Fix when method return struct.
  • AlienKevin: Add flutter example for macOS. Add doc for Android NDK bug.
  • banool: Fix pubspec parsing. Fix symbol-stripping doc.
  • efc-mw: Improve Windows encoding handling.
  • valeth: Rename callFfi's port.
  • sccheruku: Prevent double-generating utility.
  • jsonmona: Add import.
  • w-ensink: Improve doc. Fix CI. Refactor. Add tests.
  • codercengiz: Fix mirroring bug.
  • Michael-F-Bryan: Detect broken bindings.
  • bus710: Add a case in troubleshooting.
  • Demezy: Mention troubleshooting.
  • Syndim: Add a bracket to box.
  • TENX-S: Improve doc. Reproduce a bug.
  • CicadaCinema: Bump version. Improve doc.
  • w1th0utnam3: Improve message.
  • vincent-herlemont: Loosen version.
  • zaynetro: Improve doc.
  • raphaelrobert: Remove oudated doc.
  • elliotsayes: Improve doc.
  • alexthe2: Improve doc.
  • tmpfs: Improve doc.
  • thomas725: Improve doc.
  • juzi5201314: Improve doc.
  • Voklen: Improve doc.
  • svenstaro: Improve doc.
  • utilForever: Fix typos.
  • Stonks3141: Fix doc credit.
  • feber: Fix doc link.
  • rustui: Fix a typo.
  • eltociear: Fix a typo.

About

High-level memory-safe binding generator for Flutter/Dart <-> Rust

https://fzyzcjy.github.io/flutter_rust_bridge/

License:MIT License


Languages

Language:Rust 40.4%Language:Dart 39.8%Language:C 11.9%Language:JavaScript 4.2%Language:C++ 1.6%Language:CMake 1.1%Language:HTML 0.2%Language:Python 0.2%Language:Shell 0.2%Language:Ruby 0.2%Language:Swift 0.1%Language:Kotlin 0.0%Language:Objective-C 0.0%