Skip to content

Instantly share code, notes, and snippets.

View famasf1's full-sized avatar
🎯
Focusing

Jirayuth Porka famasf1

🎯
Focusing
  • TECH BUSINESS
  • Bangkok, Thailand
  • 21:59 (UTC +07:00)
View GitHub Profile
@Adem68
Adem68 / flutter-project-line.md
Last active April 15, 2025 15:55
How many lines does your Flutter project have?
  • Open terminal and go to your project's lib folder. After that run the command below.
  • find . -name '*.dart' ! -name '*.g.dart' ! -name '*.freezed.dart' ! -name '*.gr.dart' ! -name '*.gen.dart' | xargs wc -l

Thanks @AcetylsalicylicAcid for excluding generated files.