update profile and UI tweaks

This commit is contained in:
Trey t
2025-11-30 12:37:15 -06:00
parent b0838d85df
commit 94781f4c48
25 changed files with 184 additions and 103 deletions

View File

@@ -162,19 +162,6 @@ struct SmallWidgetView: View {
var body: some View {
VStack(alignment: .leading, spacing: 0) {
// Header
HStack(spacing: 6) {
Image(systemName: "house.fill")
.font(.system(size: 14, weight: .semibold))
.foregroundStyle(.blue)
Text("Casera")
.font(.system(size: 14, weight: .bold))
.foregroundStyle(.primary)
Spacer()
}
// Task Count
VStack(alignment: .leading, spacing: 4) {
Text("\(entry.taskCount)")
@@ -410,16 +397,8 @@ struct LargeWidgetView: View {
VStack(alignment: .leading, spacing: 6) {
// Header
HStack(spacing: 6) {
Image(systemName: "house.fill")
.font(.system(size: 16, weight: .semibold))
.foregroundStyle(.blue)
Text("Casera")
.font(.system(size: 16, weight: .bold))
.foregroundStyle(.primary)
Spacer()
Text("\(entry.taskCount)")
.font(.system(size: 22, weight: .bold))
.foregroundStyle(.blue)
@@ -483,7 +462,9 @@ struct LargeTaskRowView: View {
HStack(spacing: 10) {
if let residenceName = task.residenceName {
HStack(spacing: 2) {
Image(systemName: "house.fill")
Image("icon")
.resizable()
.frame(width: 7, height: 7)
.font(.system(size: 7))
Text(residenceName)
.font(.system(size: 9))