Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 876
avi12 Avatar asked Jan 16 '19 22:01

avi12


2 Answers

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

like image 80
GetWidget Avatar answered Sep 26 '22 23:09

GetWidget


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.

like image 32
westdabestdb Avatar answered Sep 24 '22 23:09

westdabestdb