How to enable inlay hints in Visual Studio Code Like JetBrains code editors in Flutter?

401 Views Asked by At

So, I want this kind feature in Jetbrains code editors activated in Visual Studio Code Jetbrains Editor

Enabled something like this in settings.json

my settings.json

but, nothing changed at all

My VsCode

How to enable inlay hints VS Code?

2

There are 2 best solutions below

0
Anonymous On

My answer is probably late, but below is code that may help enable inlay hints support for Dart & Flutter in VS Code:

"[dart]": {
    "editor.inlayHints.enabled": "on"
}

PS: The above code should be pasted into your settings.json.

0
Hardik On

This vscode extension by MrChetan gave me closer to my quest for this feature.