Remood

Project Structure

  • app
    • core
      • utils: chứa các hàm xử lí chung cho app
      • values
        • languages
      • app_colors: là nơi định nghĩa màu cho cả app
      • app_strings: là nơi chứa các chuỗi của cả app
      • app_values: là nơi chứa các formatter ngày giờ tháng năm
    • data
      • models: chứa các models của app
      • services: chứa các hàm service của app (https, authen_service,...)
    • global_widgets: chứa các widgets được sử dụng nhiều lần trong app
    • modules
      • <module_name>: được đặt tên theo tên chức năng
        • screens: chứa các trang của tính năng
        • widgets: chứa các local widgets chỉ xuất hiện trong tính năng này
        • <module_name>_controller.dart: Khởi tạo controller cho tính năng
        • <module_name>_binding.dart: Định nghĩa các hàm và biến cho controller
    • routes
      • app_pages.dart: dẫn các route đến các trang tương ứng
      • app_routes.dart: chứa tên các route
  • main.dart

Git

Change the last commit on remote repo

> git add <file_name>
> git commit --amend -m "<message>"
> git push --force-with-lease

Rename local and remote branch

# Rename the local branch to the new name
> git branch -m <old_name> <new_name>

# Delete the old branch on remote - where <remote> is, for example, origin
> git push <remote> --delete <old_name>

# Or shorter way to delete remote branch [:]
> git push <remote> :<old_name>

# Prevent git from using the old name when pushing in the next step.
# Otherwise, git will use the old upstream name instead of <new_name>.
> git branch --unset-upstream <new_name>

# Push the new branch to remote
> git push <remote> <new_name>

# Reset the upstream branch for the new_name local branch
> git push <remote> -u <new_name>