Reduce circle size

This commit is contained in:
Milan Stute
2021-03-11 00:46:24 +01:00
parent e8c319c0c7
commit fc09091510

View File

@@ -25,14 +25,13 @@ struct IconSelectionView: View {
label: {
Circle()
.strokeBorder(self.selectedColor, lineWidth: 2)
.background(
ZStack {
Circle().fill(Color("PinColor"))
Image(systemName: self.selectedImageName)
}
)
.frame(width: 40, height: 40)
.frame(width: 32, height: 32)
}
)
.buttonStyle(PlainButtonStyle())