mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Shrink circles on contact list
This commit is contained in:
parent
0c3dbf3b26
commit
fa4f8ec4b3
1 changed files with 2 additions and 2 deletions
|
|
@ -53,7 +53,7 @@ struct Contacts: View {
|
|||
HStack {
|
||||
VStack(alignment: .leading) {
|
||||
HStack {
|
||||
CircleText(text: user.shortName ?? "???", color: Color.blue)
|
||||
CircleText(text: user.shortName ?? "???", color: Color.blue, circleSize: 52, fontSize: 16)
|
||||
.padding(.trailing, 5)
|
||||
VStack {
|
||||
Text(user.longName ?? "Unknown").font(.headline)
|
||||
|
|
@ -91,7 +91,7 @@ struct Contacts: View {
|
|||
} else {
|
||||
HStack {
|
||||
VStack(alignment: .leading) {
|
||||
CircleText(text: user.shortName ?? "???", color: Color.blue)
|
||||
CircleText(text: user.shortName ?? "???", color: Color.blue, circleSize: 52, fontSize: 16)
|
||||
.padding(.trailing, 5)
|
||||
}
|
||||
VStack {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue