Flutter Extract Method vs. Extract Widget vs. Extract Flutter Widget in androidStudio

1,182

If you want to show a widget use the Extract widget and method is basically a function needs to be executed basically logical part. You can do same by return the widget in methods but it's not a right choice as per performance basis.

But if you are a beginner then it's ohkk to use for now.

This comment is basically posted by Satyarth Mittal.

Share:
1,182
Code D. Monkey
Author by

Code D. Monkey

Updated on December 23, 2022

Comments

  • Code D. Monkey
    Code D. Monkey over 1 year

    Hi I'm new to Flutter and I have several questions regarding Extract Method and Extract Widget in Android Studio.

    1. When it comes to making code clean and reusable, what is the difference between Extract Method and Extract Widget? When do I know what to use? It seems they both work fine to me.

    2. If I Right click on a Widget that I want to extract and go to Refactor -> Extract Flutter Widget then it works, however if I Left click on a Widget to focus and use the hotkey Command+Option+W, it doesn't work. Why is it happening? Moreover if I go to Flutter outline -> select the Widget -> Right click -> Extract Widget then it shows the same result. What's the difference between Extract Flutter Widget and Extract Widget?

    Thank you.