liquid glass update 1

This commit is contained in:
neon443
2025-06-10 13:14:19 +01:00
parent 559f891719
commit a7e09692f6
2 changed files with 8 additions and 12 deletions

View File

@@ -151,7 +151,7 @@ struct AddEventView: View {
resetAddEventView()
dismiss()
} label: {
Image(systemName: "xmark.circle.fill")
Image(systemName: "xmark")
.symbolRenderingMode(.hierarchical)
.resizable()
.scaledToFit()
@@ -182,6 +182,7 @@ struct AddEventView: View {
.cornerRadius(10)
.buttonStyle(BorderedProminentButtonStyle())
}
.tint(.accent)
.apply {
if #available(iOS 17, *) {
$0.sensoryFeedback(.success, trigger: bye)

View File

@@ -34,17 +34,12 @@ struct AddEventButton: View {
Button() {
showingAddEventView.toggle()
} label: {
ZStack {
Circle()
.frame(width: 33)
.foregroundStyle(.one)
Image(systemName: "plus")
.resizable()
.scaledToFit()
.frame(width: 15)
.bold()
.foregroundStyle(.two)
}
Image(systemName: "plus")
.resizable()
.scaledToFit()
.frame(width: 15)
.bold()
.foregroundStyle(.two)
}
}
}