Creating a dart-only library with a flutter library on top of it #819
-
Hello! Many packages out today have a dart-only base, and then a flutter package built on top of it (think riverpod). I was wondering how that would look with Here is what I was thinking of making:
Is this sort of setup possible (with all rust bindings exclusively in package 1)? How would this look amongst all packages? Any other caveats I should be aware of? I am mostly wondering how package packages 2 & 3 would need to look. 1 & 4 should be trivial enough (I think?). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 28 replies
-
Same in my internal app indeed. As for web - flutter_rust_bridge does support web, so guess will not have trouble about that.
Yes, works well in my internal app For me, I combine 1+3 and 2+4, so there is only a dart package and a flutter package |
Beta Was this translation helpful? Give feedback.
-
Once #899 is merged, documentation should be available on this in the user guide! |
Beta Was this translation helpful? Give feedback.
Same in my internal app indeed.
As for web - flutter_rust_bridge does support web, so guess will not have trouble about that.
Yes, works well in my internal app
For me, I combine 1+3 and 2+4, so there is only a dart package and a flutter package