This page describes coding standard used in this project briefly.
-
For widget files, it is named using PascalCase (Eg.
VideosPage.dart
,Video.dart
). -
For other files, it is named using snake_case (Eg.
youtube_vendor.dart
,util.dart
).
-
Variables, Properties are named using camelCase. (Eg.
variableA
); -
Classes are named using PascalCase. (Eg.
ClassA
); -
Constants are named using Upper SNAKE_CASE (Eg.
THEME_MODE
).