It's been two years so I have no idea what's going on

This commit is contained in:
Isaac Greene 2025-10-02 23:57:33 -04:00
parent 099728c760
commit ed2f6af9c8
Signed by: isaac
SSH key fingerprint: SHA256:Jr4CSXfwzXSuwhYRd3vX12Wt/v8vkvq0hOJ0NLwubH8
23 changed files with 112 additions and 473 deletions

View file

@ -26,8 +26,8 @@ struct HelpView: View {
self.mathSheet.toggle()
})
.frame(width: 130, height: 40, alignment: .center)
.background(.tertiary)
.foregroundColor(.primary)
.background(Color.blue)
.foregroundColor(.white)
.cornerRadius(12)
.padding(30)
.sheet(isPresented: self.$mathSheet, content: {
@ -76,3 +76,9 @@ struct mathView: View {
}
}
}
struct HelpView_Previews: PreviewProvider {
static var previews: some View {
HelpView()
}
}