25 Replies
Hey @IDIR, we don't have a client library for Flutter yet. We recommend React Native for mobile development for now.
@Michal Srb when are you going to support Flutter?
Flutter is not currently on our upcoming roadmap. We'll likely build native Android and iOS bindings first (no timeline yet) that Flutter can use.
That said, you can always use the HTTP API directly (it's not super well documented), but you won't get realtime updates: https://docs.convex.dev/http-api/#post-apiquery-apimutation-apiaction
You can also create custom HTTP Endpoints to be used by your Flutter app as well: https://docs.convex.dev/functions/http-actions
HTTP Actions | Convex Developer Hub
HTTP actions allow you to build an HTTP API right in Convex!
Convex HTTP API | Convex Developer Hub
Connecting to Convex directly with HTTP
Our other features rely on Flutter client sdk, if I want realtime updates viewed inside Flutter app, what options do I have ? and how reliable the Android binding for Flutter if it ever happens, is it a shortcut or normal way ?
If you absolutely must do realtime updates I can tell you the hard way and a hacky way:
Hard way: Wrap the Rust convex client in Dart directly with some sort of ffi tool. I am not super familiar with the ecosystem but when I had looked a long time ago there were potentially some options.
Hacky way: make a hidden webview in your app that is in your root layout and thus always available (I assume this is possible with Flutter). Put the JS ConvexClient in there and write some WebView bridging code to the Flutter code (again I assume flutter has such a mechanism). I've used this approach in the past in a similar situation with an Android app and it surprisingly worked quite well.
Just checking if there's any status updates or reprioritizations of this on the Convex roadmap?
We are working on Kotlin and Swift now. Once we have that it might be possible to wrap that for Flutter mobile.
By supporting Flutter you could integrate with FlutterFlow which has grown massively over the past 3 years ( I think over 1.5M+ devs now )
Thanks for the tip!
@Indy Just checking if there are any status updates on convex for flutter, now that Convex for Android and as well as for swift are available
Not yet in the plan. We're focusing on reliability and a few existing roadmap items. However @v Was able to get flutter and convex working with the rust client recently.
if you want an example i can make a repo
Quickstart | flutter_rust_bridge
If you like to setup in one command:
@v I have checked out the link but An example would really be helpful, thanks.
Any progress on this @Indy @Michal Srb ? I'd instantly switch from supabase, and I imagine many in the flutter community would love this a lot.
We'll likely not look back into this area for a little while unfortunately. Thanks for pointing it out
i made an example https://github.com/vynxc/convex_dart
GitHub
GitHub - vynxc/convex_dart
Contribute to vynxc/convex_dart development by creating an account on GitHub.
its not tested very much and may have some issues but it works at least for whatever i tested it for
@Mohan Singh
very much a demo. maybe someone with more time can make this more useable
@v Thanks a lot,
will take a look and try to implement more
thanks
@v Partially good news, the package works only for the iOS real devices, testing still going on, good to support simulator as well then will add android, Mac, Windows and Linux
i have a lib project setup too
i can look into it more
and if you need help just shoot me a dm
Okay sure thanks
https://pub.dev/packages/convex_flutter
still some work pending and some verification remaining i will update accordingly.
big thanks to @v , please check and contribute or raise an issue thanks a lot
Thanks for putting the time into making it a package 🙏
What language need a client huh
I'll try c# but it will be a pain hahaha
No time for it frankly
But fuck it we ball at midnight
I literally got further with a manual websocket connection than with bindings