Replace dimming with different icon

This commit is contained in:
Davide De Rosa 2022-05-03 19:24:46 +02:00
parent 4cb18965c9
commit 92caf67876
2 changed files with 2 additions and 3 deletions

View File

@ -157,7 +157,7 @@ extension View {
}
var themeProfileActiveImage: String {
"circle"
"checkmark.circle"
}
var themeProfileConnectedImage: String {
@ -165,7 +165,7 @@ extension View {
}
var themeProfileInactiveImage: String {
"circle.dashed"
"circle"
}
var themeCheckmarkImage: String {

View File

@ -41,7 +41,6 @@ struct ProfileRow: View {
VPNStateView(isActive: isActive)
.font(.subheadline)
}.padding([.top, .bottom], 10)
.opacity(isActive ? 1.0 : 0.5)
}
private var nameView: some View {