skip to Main Content

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


  1. 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

    Login or Signup to reply.
  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search