Is there a way, in VS Code, to make the autocompleted widget arguments go on a new line?
Bad:
Column(children: [])
Good:
Column(
children: []
)
I guess it has something to do with the dart_style’s formatter (?)
Is there a way, in VS Code, to make the autocompleted widget arguments go on a new line?
Bad:
Column(children: [])
Good:
Column(
children: []
)
I guess it has something to do with the dart_style’s formatter (?)