Coder Social home page Coder Social logo

morn-0 / flutter_rust_bridge Goto Github PK

View Code? Open in Web Editor NEW

This project forked from solongandthanksforallthepizza/flutter_rust_bridge

0.0 0.0 0.0 5.92 MB

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

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

License: MIT License

Shell 0.07% JavaScript 13.06% Ruby 0.41% C++ 3.19% Python 0.54% C 1.41% Objective-C 0.01% Rust 44.98% Kotlin 0.02% Dart 32.78% Swift 0.19% HTML 0.59% CMake 2.75%

flutter_rust_bridge's Introduction

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, 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).
  • 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 (Web coming soon)
  • 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. Convenient Flutter tests

If you want to write and debug tests in Flutter conveniently, with action history, time travelling, screenshots, rapid re-execution, video recordings, interactive mode and more, here is my another open-source library: https://github.com/fzyzcjy/flutter_convenient_test.

โœจ Contributors

All Contributors

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


fzyzcjy

๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿšง

Viet Dinh

๐Ÿ’ป โš ๏ธ ๐Ÿ“–

Joshua Wade

๐Ÿ’ป

Marcel

๐Ÿ’ป

rustui

๐Ÿ“–

Michael Bryan

๐Ÿ’ป

bus710

๐Ÿ“–

Sebastian Urban

๐Ÿ’ป

Daniel

๐Ÿ’ป

Kevin Li

๐Ÿ’ป ๐Ÿ“–

Patrick Auernig

๐Ÿ’ป

Anton Lazarev

๐Ÿ’ป

Unoqwy

๐Ÿ’ป

Febrian Setianto

๐Ÿ“–

syndim

๐Ÿ’ป

sagu

๐Ÿ’ป ๐Ÿ“–

Ikko Ashimine

๐Ÿ“–

alanlzhang

๐Ÿ’ป ๐Ÿ“–

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.
  • SecondFlight: Allow structs and enums to be imported from other files within the crate by creating source graph. Auto-create relavent dir.
  • 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.
  • 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.
  • trobanga: Add support for [T;N] structs. Add usize support. Add a cmd argument. Separate dart tests.
  • AlienKevin: Add flutter example for macOS. Add doc for Android NDK bug.
  • alanlzhang: Add generation for Dart metadata.
  • efc-mw: Improve Windows encoding handling.
  • valeth: Rename callFfi's port.
  • Michael-F-Bryan: Detect broken bindings.
  • bus710: Add a case in troubleshooting.
  • Syndim: Add a bracket to box.
  • feber: Fix doc link.
  • rustui: Fix a typo.
  • eltociear: Fix a typo.

flutter_rust_bridge's People

Contributors

alanlzhang avatar alienkevin avatar allcontributors[bot] avatar antonok-edm avatar bus710 avatar codacy-badger avatar dependabot[bot] avatar desdaemon avatar efc-mw avatar eltociear avatar feber avatar fzyzcjy avatar github-actions[bot] avatar mergeable[bot] avatar michael-f-bryan avatar rustui avatar sagudev avatar secondflight avatar solongandthanksforallthepizza avatar surban avatar syndim avatar trobanga avatar unoqwy avatar valeth avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.