-
Notifications
You must be signed in to change notification settings - Fork 340
Closed
Labels
in editorRelates to code editing or language featuresRelates to code editing or language featuresis bug
Milestone
Description
When you have a long structure, E.g. a Scaffold, the tooltip will show all the way at the bottom close of the structure. This is an issue because you cannot move your mouse to scroll a long tooltip.
Not sure what the best solution is, but I see why it is this way. Android Studio does it the obvious way which is show tooltip right below the name.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Pictures')),
body: Column(
children: <Widget>[
Image.asset(
'assets/ship.jpg',
),
Text('Ship'),
RaisedButton(
color: Colors.blue,
child: Text("Press me!",
style: TextStyle(
color: Colors.white,
fontStyle: FontStyle.normal,
fontWeight: FontWeight.normal,
fontSize: 20.0)),
onPressed: () {}),
Center(
child: Column(children: [
Text('Hello, World!'),
Icon(Icons.star, color: Colors.green),
]))
],
),
),
);
}
}
Metadata
Metadata
Assignees
Labels
in editorRelates to code editing or language featuresRelates to code editing or language featuresis bug