'flutter in vscode how to remove blue line
Solution 1:[1]
Solution 2:[2]
What you probably want is just to remove only the blue lines and nothing else, then find the file pubspec.yaml and remove or comment the line with flutter_lints. Save and Make sure to restart the application.
Solution 3:[3]
Press command+shift+p (open command pallete)
Then type Disable Error Squiggles.
And click on that Disable Error Squiggles.
Solution 4:[4]
Rename Your file name to the login_page.dart.
This blue line shows the warning to us because of
linter. There is a rule defined in the package that the file name must belower_camel_case. This is becauselinterdefines the bet practices.
Solution 5:[5]
remove flutter_lints: ^1.0.0 , its work for me. don't forget to pub get
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | codelone |
| Solution 2 | Hygison Brandao |
| Solution 3 | Jignesh Patel |
| Solution 4 | Kishan Dhankecha |
| Solution 5 | Akshay I |



