use chevron on font changer row for now

This commit is contained in:
Satindar Dhillon
2022-11-01 09:18:01 -07:00
parent 1ad5fdb838
commit 0639342154

View File

@ -142,14 +142,16 @@ public enum WebFont: String, CaseIterable {
}
)
HStack {
NavigationLink(destination: fontList) {
NavigationLink(destination: fontList) {
HStack {
Text("Font")
Spacer()
Image(systemName: "chevron.right")
// Button(action: {}, label: { Text("Crimson Text").frame(width: 91) })
// .buttonStyle(RoundedRectButtonStyle())
}
Spacer()
Button(action: {}, label: { Text("Crimson Text").frame(width: 91) })
.buttonStyle(RoundedRectButtonStyle())
}
.foregroundColor(.appGrayTextContrast)
.frame(height: 40)
Toggle("High Contrast Text:", isOn: $prefersHighContrastText)