A new Flutter project.
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
should well indicate the purpose not recommended importing iwth wildcard Braces should be { } Indent 4 spaces
have to consider Restrictiing Character line
File naming
- snake_case
- page widget should be named like {purpose_associated_name}_page.dart
Class & Type
- PascalCase
Function
- start with verb
Variable
- camelCase
- combination of Noun (Phrases) *but, naming bool type variable should put verb together. (isConnected, hasSize, supportsIOS, etc)
Abbreviation
- temporary -> temp
- information -> info
- to be added