No 'Remove Widget' option for flutter with Android Studio in Windows 10

2,990

The name has been changed from Remove Widget to Replace widget with its children but does the same thing.

UPDATE: Flutter has turned it back to Remove Widget.

Share:
2,990
VipiN Negi
Author by

VipiN Negi

/// Vipin's Profile /// /// Developer & Designer /// class Vipin implements Developer, Designer { final String name = 'Vipin K Negi'; final String email = '[email protected]'; List<String> get languages => [ 'java', 'dart', 'javascript', ]; List<String> get technologies => [ 'flutter', 'node.js', 'mysql', 'mongodb', ]; List<String> get tools => [ 'Android Studio', 'XCode', 'VS Code', 'Postman', 'HiediSQL', 'Sequel Ace', 'Adobe Photoshop', 'Adobe XD', 'Adobe Illustrator', ]; List<String> get OS => [ 'Windows 10', 'MacOS Big Sur', ]; }

Updated on December 14, 2022

Comments

  • VipiN Negi
    VipiN Negi over 1 year

    Widget options (Alt+Enter) are quite helpful in Flutter Development with Android Studio. It helps us to Move, Wrap, Add, Remove or Swap Widgets automatically, basically makes our life easy.

    Issue : In my IDE the 'Remove widget' option is missing. Check the image below for reference. With my fresh installation of Android Studio in two different computers, the option was never there since the beginning. I'm sure I never played or messed related configurations.

    I know its not a big deal, but I'd love to have remove option as I play a lot with Widgets around and removing sometimes a pain.

    Is there anything in configuration that I need to enable?

    Android Studio : v3.5

    enter image description here

  • Przemo
    Przemo over 2 years
    It's still true, but there are some widgets, which can't be removed (yet?), like the most inner widgets, or Obx (from GetX package). I don't know why the latter.