feat: major UI/UX overhaul + user management + ticket detail refactor

- 5-tab navigation (Home/Clients/Collect/Tickets/Profile)
- Inline styles throughout (17px min font, SafeAreaView)
- Dashboard fixed to match real API shape
- Ticket detail: 2 tabs (Details + Comments), always-visible comment input
- Installation confirmation: GPS coordinate capture + client location update
- User management screens (Admin only): list, create, detail + role/active toggle
- Tasks folder replaces tickets folder
- Remittance detail: inline styles
- Record payment: prefill from client, live button text
- Icon component with SVG icons
- Color system: primary #0891B2
This commit is contained in:
Nemo
2026-03-24 10:37:57 +08:00
parent baed6dc8d5
commit 4644a3194d
38 changed files with 4967 additions and 2984 deletions

View File

@@ -4,12 +4,24 @@
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@/components/*": ["./components/*"],
"@/stores/*": ["./stores/*"],
"@/services/*": ["./services/*"],
"@/hooks/*": ["./hooks/*"],
"@/constants/*": ["./constants/*"]
"@/*": [
"./*"
],
"@/components/*": [
"./components/*"
],
"@/stores/*": [
"./stores/*"
],
"@/services/*": [
"./services/*"
],
"@/hooks/*": [
"./hooks/*"
],
"@/constants/*": [
"./constants/*"
]
}
},
"include": [
@@ -17,7 +29,6 @@
"**/*.tsx",
"nativewind-env.d.ts",
"types/**/*.d.ts",
".expo/types/**/*.d.ts",
"expo-env.d.ts"
".expo/types/**/*.d.ts"
]
}