You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's the most visible inside flutter code, see example below.
The issue only occurs if dart.previewLsp is enabled in the settings.
returnContainer(
// If I put my cursor on the first line and press ctrl+space I do not get any suggestions
child:Text(“test”),
// I also don't get any suggestions between two items
color:Colors.red,
// But, if there's a comma between my cursor and the next word, the suggestions appear
,
alignment:Alignment.center,
);