Code Monkey home page Code Monkey logo

rust-flutter-reactive's Introduction

Rust Flutter Reactive

This is a sample app to improve consistency over Mobile App Development. You can find more explanation below. By the way, I started playing with fluterust sample, but in the end, by reorganize its structure and architecture, and also don't rely on FFI code generations, come up with this solution, so part of the code here is just a copy of that sample.

Technologies

The followings are the libraries and technologies that are used in this sample.

  • Rust as the main part of the app. Tried to create it as scalable as possible.
  • Dependency Injection.
  • Applying Dependency Inversion Principle on module level, where you can find implement/interface modules.
  • Flutter as the ui framework. You can find the flutter project in ui directory.
  • Clean Architecture as you can find the domain, data, and presentation layers in domain, data, and presentaiton directories. The data layer is completely empty and just created to show how wire up these layers.
  • FFI as Foreign function interface and bridge between Rust and Dart code in Flutter. You can find this bridge in bridge-ffi directory.
  • Flatbuffers as the serializer of the bridge. Thanks to fast and scalable serialization of Flatbuffers, this project can be easily plugged out of Flutter and attached to other ui frameworks if exists! Also it make this project scalable without touching the FFI bridge code(Just in case of error or memory leak you may need to touch it). Flatbuffers generates the state and action, where both of them are tree structures, so each developer can work on their branches without conflicting with other developers. Scalability is in the heart of this sample.
  • Redux as the architectural pattern of presentation layer. It designed to be fractal(The tree structure that mentioned before), so it's highly scalable among large number of developers.

Enjoy!

Why Rust?

I can mention the following for my choice.

  • Performance for sure.
  • Strong typing up to constant generics, which means scalability. This one is highly important in my mind, as it can makes you 10x developer by avoiding future bugs and inconsistencies. By up to constant generics, I mean its type system is stronger than Java, Kotlin, Swift, etc. so the code base will be more scalable in Rust.
  • Super fast compiling when you re-run the tests.
  • Compiler messages are more like Stackoverflow posts. Most of them guide you to the correct solution.
  • The same as Dart it makes the code independent of platform.

Why Flutter?

It makes the code independent of the platform. As an Android developer, we face solving problems of Android fragmentation, much frequently than it should be. Add to these inconsistencies, every company deals at least with two sets of developers, Android and iOS developers, for the same problem. If you have the same use-case/validation in backend and frontend you have more than two sets of developers for the same problem. This inconsistencies in worst cases produce bugs. But even when there is no bug, they make users angry why the same feature is working differently in two platforms. By making your code independent of platform you can make it consistent. However, everything is a trade-off. The price you pay for consistency among all platforms is the size of the app. For instance, the size of the app-debug.apk file of this sample is 38M, which I think worth it.

Run/Test

You need to install:

  • xcode if you're on a mac
  • Android Studio, Android sdk, and Android ndk
  • flatbuffer
  • rust's rustup, cargo, cargo-make and the targets
  • flutter

To build and run tests just use standard cargo commands.

cargo test

Before making the artifacts from rust code first run

rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android
rustup target add aarch64-apple-ios x86_64-apple-ios
cargo install cargo-make

Then build the shared libraries by

cargo make

To run the flutter app

cd ui && flutter run

Nix

If you're familiar with Nix, you just need to install:

  • xcode if you're on a mac
  • Android Studio, and Android sdk
  • flutter

and Nix will take care of the rest by

nix-shell shell.nix
$ cargo test
$ cargo make

It'll build the shared libraries for Android and iOS. Then you can exit the shell, and continue on flutter:

cd ui && flutter run

Questions/Problems

Please feel free to fill an issue to ask questions or report issues. Also creating PRs are welcomed.

rust-flutter-reactive's People

Contributors

hadilq avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

rust-flutter-reactive's Issues

Cargo Test failed!

I tried searching around Google and StackOverFlow about FLATC but that didn't work for me. help me!

cargotest  Error

[Enhancement] Auto-generate high-level memory-safe binding between Dart and Rust via flutter_rust_bridge

Hi, thanks for the project! However, when testing it, I find that flatbuffers is sometimes not that easy to play with, and such serialization seems to be a bit slower than directly calling ffi. Therefore, maybe we can use flutter_rust_bridge to generate the binding code? It is high-level and memory-safe, so we can get the same feeling as flatbuffer (no need for manual memory allocate/free, etc), while having a better speed and usability.

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.