Overview Version History Q & A Rating & Review
Quickly jump to the build()
method in your Flutter widgets — no more endless scrolling through long Dart files.
✨ Features
One-click jump
Instantly move to the build()
method in the current file.
Multiple entry points
Keyboard shortcut: Cmd+Shift+B
(Mac) / Ctrl+Shift+B
(Windows/Linux)
Editor title bar button
Status bar button
Right-click context menu
Inline CodeLens above build()
methods
Smart detection
Works with:
StatelessWidget
StatefulWidget
& State
classes
HookWidget
(flutter_hooks)
ConsumerWidget
(Riverpod)
Custom widgets with build()
methods
Customizable UI
Toggle status bar, title bar, CodeLens, or context menu items to match your workflow.
📸 Screenshots
Status Bar & CodeLens
🚀 Getting Started
Install Jump to Build from the VS Code Marketplace.
Open any Dart file containing Flutter widgets.
Use the shortcut Cmd+Shift+B
(Mac) / Ctrl+Shift+B
(Windows/Linux), or click the button in the title bar / status bar.
That’s it — the extension activates automatically in Dart files.
⚙️ Configuration
Available Settings
Setting
Default
Description
jumpToBuild.showStatusBar
true
Show quick access button in the status bar
jumpToBuild.showEditorTitle
true
Add navigation button in the editor title bar
jumpToBuild.showCodeLens
true
Show clickable inline links above build methods
jumpToBuild.showContextMenu
true
Add option to the right-click context menu
jumpToBuild.codeLensPosition
"aboveBuild"
CodeLens position: "aboveClass"
or "aboveBuild"
Example Configuration
Add to your user settings (settings.json
):
{
"jumpToBuild.showStatusBar": true,
"jumpToBuild.showEditorTitle": true,
"jumpToBuild.showCodeLens": true,
"jumpToBuild.showContextMenu": true,
"jumpToBuild.codeLensPosition": "aboveBuild"
}
💡 Tips
View positioning
The build method will appear slightly above the center of the screen, so you see both class declaration and the method body.
Multiple widgets
If a file has several build()
methods, the extension lets you choose the one to jump to via CodeLens or quick pick.
Performance
Lightweight and optimized — only active in Dart files.
🔧 Troubleshooting
📮 Feedback
If you find issues or have feature requests, please leave feedback on the Marketplace page.
📝 License
This extension is proprietary software.
You are free to install and use it via the VS Code Marketplace. Redistribution or modification of the source code is not permitted.
Enjoy faster navigation in Flutter projects! 🦋