Matthew Rideout
Matthew Rideout

Reputation: 8518

Android Studio Flutter Tooltips Not Showing

I am following along a tutorial for Flutter using Android Studio. The instructor's screen shows more detailed tooltips / hints than my environment does.

I am unsure of how to enable these extra details.

Examples

Instructor's Screen (extra tooltip details in red): enter image description here

My Screen enter image description here

Upvotes: 5

Views: 2233

Answers (2)

Jadezzz
Jadezzz

Reputation: 83

Go to Preferences->Editor->General->Code Completion

Check the box "Show the documentation popup in xxx ms"

Upvotes: 8

Tor-Martin Holen
Tor-Martin Holen

Reputation: 1639

After having the Basic Code Completion open (Control + Space), then hit Control + Q (Win/Linux) or Control + J (Mac) to open the Quick Documentation Lookup, this will make your screen appear as your instructors. Alternatively, just hit the last keyboard shortcut to only see the Quick Documentation Lookup.

For more keyboard shortcuts see: https://developer.android.com/studio/intro/keyboard-shortcuts

Upvotes: 6

Related Questions