Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created January 4, 2021 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sturdysturge/938f315c2eac40b697e7fa6a0886bace to your computer and use it in GitHub Desktop.
Save sturdysturge/938f315c2eac40b697e7fa6a0886bace to your computer and use it in GitHub Desktop.
struct FontSizeStepper: View {
@Binding var fontSize: CGFloat
var body: some View {
Stepper(value: $fontSize, in: 1...100) {
Text("Font size: \(String(format: "%.f", fontSize))")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment