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 de5c57fbd5 1.1.3 uploaded and upgraded to android 34. 10 months ago
android 1.1.3 uploaded and upgraded to android 34. 10 months ago
assets ui improvements. 3 years ago
ios version 1.1.2 released on stores. 2 years ago
lib 1.1.3 uploaded and upgraded to android 34. 10 months 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.yaml 1.1.3 uploaded and upgraded to android 34. 10 months 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)