Flutter looks cool. Dart needs more of an ecosystem though. I was trying to play with flutter last week, gave up when I discovered there is no standard lib FFT implementation in Dart.
https://pub.dartlang.org/packages/fft
Google's cross-platform Flutter UI toolkit goes 1.0
341–343 of 343 posts
Re: Google's cross-platform Flutter UI toolkit goes 1.0
#342Earlier quoted context omitted.
https://pub.dartlang.org/packages/fft
Yeah I saw that. It's just maintained by some random guy. Which is great and all, but something like fft should really be part of the standard lib.
Re: Google's cross-platform Flutter UI toolkit goes 1.0
#343Writing plugins/bindings for native code in flutter doesn't look fun. Almost 100 lines of code to write binding for function that doesn't take any parameters and returns simple 'int' (int getBatteryLevel()). This just looks even worse than JNI to me. Don't want to even thing how long time it would take me to write bindings for function that do image processing. https://github.com/flutter/flutter/blob/master/examples/…
I did some research and found that Dropbox open sourced their internal tool for building cross-platform mobile apps in C++. Djinni (https://github.com/dropbox/djinni) uses an interface definition language to generate bindings between C++ & ObjC & Java (via JNI). From this, I added some tooling to help get the build setup and define some basic UI elements while trying to keep it simple. If you happen to give it a try, I'd love to hear your thoughts: https://github.com/adamtait/ctheworld