Skip to content

Commit

Permalink
Table Group design improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
kaulex99 committed Jun 17, 2024
1 parent 799d195 commit 7ab9c2f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions WaiterRobot/Ui/TableList/TableGroupSection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,16 @@ struct TableGroupSection: View {
}
} header: {
HStack {
Color(UIColor.lightGray).frame(height: 1)
Text(tableGroup.name)
Color(UIColor.lightGray).frame(height: 1)
.font(.title2)
.foregroundStyle(.white)
.padding(6)
.background {
RoundedRectangle(cornerRadius: 8.0)
.foregroundStyle(Color(.main))
}

Spacer()
}
}
}
Expand Down

0 comments on commit 7ab9c2f

Please sign in to comment.