If you work as a Flutter developer, how do you handle things like UI? Do you modify the code every time there is a little change? Or do you automate it in conjunction with design tools?
I used a plugin "Figma2Flutter", but it seemed quite complicated and I was wondering if you use this method in your field as well.
If the designer wants to move the button a little bit, is it like changing the code even?
2
Answers
I think there is no direct way to update the code. The only way to make it easy is by identifying and reusing the component and by applying theme
I don’t know about figma2flutter, but from the main.dart file you can define an application theme which will be reflected everywhere in your code. For example colors, fonts, appearance of text fields, etc… https://docs.flutter.dev/cookbook/design/themes