Tangheem Project
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Sikander Saleem 6be7eee060 improvements 3 years ago
android improvements 3 years ago
assets improvements 4 years ago
ios improvements 3 years ago
lib improvements 3 years ago
test App structure, fonts, icons and screens added. 5 years ago
.gitignore ui improvements. 5 years ago
.metadata Initial commit 5 years ago
README.md improvements and fixes 3 years ago
pubspec.lock improvements 3 years ago
pubspec.yaml improvements 3 years ago

README.md

Tangheem

A Flutter application to read Quran and view Tangheem on it.

Flutter Dependency

There are some important information regarding Project

  • Based on flutter v2.0 or above

Coding Guide Lines:

  • Set android studio 200 as words per line (Setting>Editor>Coding style>Dart) to avoid file format conflicts among all team members.
  • Must format file whenever perform git push
  • Folder naming should be lowercase e.g. folder_name
  • File naming should be lowercase e.g. file_name
  • Class naming should be first letter uppercase e.g. ClassName
  • Function name should be very clear to understand and should be camelCase e.g. funtionName
  • Variable names should be very clear which conveys the proper meaning of its use, to make code reading fast and easy to read by everyone.
  • Variable naming should be camelCase e.g. variableName;
  • Define variable scope if it only uses in a limited class or function make it private to avoid conflicts.
  • Make a personal git change list if you are working on a file for test for your own purposes. (to avoid that test changes when you git push)
  • avoid using too many packages if only a few functionalities required (Copy that separate code from the package file and then use this code)