I'm using Visual Studio Code how to remove this blue lines
It means you've modified that line since you last made a commit in version control. All reactions.
You can activate the command by launching the command palette (View -> Command Palette) and running "Flutter Clean Architecture: New Feature". Or you can right click on the directory in which you'd like to create the feature and select the "New Feature" command from the context menu.
Comment this line at the start of the page
// ignore_for_file: prefer_const_constructors
Example:
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.
Press command+shift+p (open command pallete)
Then type Disable Error Squiggles.
And click on that Disable Error Squiggles.
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 becauselinter
defines the bet practices.
remove flutter_lints: ^1.0.0
, its work for me. don't forget to pub get
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With