Number 3434
Number 3434
Allow the currently selected suggestion in the suggest widget to be multiline.  ## Example Usages The bottom line will show the first line of the documentation / description. The...
In the suggest widget, show the details (documentation) for the suggestion **underneath** the **cursor**. Currently, you have to use the **arrow keys** (↑ Up Arrow and ↓ Down Arrow) to...
Please add an option to maintain a **constant size** for details in the suggest widget. The details are currently jumping to fit the size, which makes it very hard to...
# comment_all_ignores *(See notes on naming in [Writing Lints].)* ## Description *A short description suitable for display in console output.* Missing a required ignore reason. Try adding a reason for...
## Describe the rule you'd like to see added and to what rule set ### Lint Lint to protect against the error "Incorrect Use of ParentData Widget" in Flutter. ###...
Lint that informs when a [`Stack`](https://api.flutter.dev/flutter/widgets/Stack-class.html), [`Row`](https://api.flutter.dev/flutter/widgets/Row-class.html), or [`Column`](https://api.flutter.dev/flutter/widgets/Column-class.html) only has a single child in the `children` parameter. ```dart // BAD, has only one child in children const Stack(children: [Text('Hello...
# Proposal Autocomplete the method signature when writing a method. For example:  This should insert a snippet that essentially matches the declaration, minus the types...
Always show return types. This is in Dart, and is very useful. For example, in Dart: | OPTIONS | |:-:|  | 1: _Full signature, split between left/right_ | ...
# The Issue When implementing an `interface` / `abstract class`, it can be very obscure which members are actually implementing it. # Describe the solution you would like Add a...
## The Bug Generics (``) are being coloured as operators, instead of their own type. ## To Reproduce 1. Copy the following: ```dart class Demo { } ``` 2. Inspect...