Open
Description
I'd like for the "wrap widget" context menu to offer a greater selection of builders, e.g., AnimatedBuilder
and LayoutBuilder
.
When it comes to single-child widgets, and even multi-child widgets, it's easy to select a similar widget and then rename it. For example, if I want a Stack
, it's not available in the context menu, but I can easily select Column
and then rename it. However, Builder
s are not so easily substituted.
Builder
s have varying additional arguments, e.g., Stream
, Listenable
, etc. Moreover, the builder delegate signature varies between Builder
s.
Providing more Builder
s would be a much bigger time saver for me than having a long list of interchangeable widgets.