Designing UI in Flutter for Android

Is it possible to design a Flutter UI via Android Studio by using a UI builder, like I would do when developing with Java/Kotlin?


Solution 1:

Yes. You can try the Flutter UI Open-Source library. Try this GitHub repo for Flutter UI design https://github.com/ionicfirebaseapp/getflutter

Solution 2:

Short answer, no.

But Flutter has something called Hot Reload, which allows you to see your chances within a second.

Flutter’s hot reload feature helps you quickly and easily experiment, build UIs, add features, and fix bugs. Hot reload works by injecting updated source code files into the running Dart Virtual Machine (VM). After the VM updates classes with the new versions of fields and functions, the Flutter framework automatically rebuilds the widget tree, allowing you to quickly view the effects of your changes.

There's also something called Flutter Studio.