a11y
// Snapshot.swift
import SwiftUI
struct Snapshot: View {
let title: String
@State private var scale = 2
var body: some View {
Text(title)
.font(.headline)
.padding(12)
}
}
// Snapshot.swift
import SwiftUI
struct Snapshot: View {
let title: String
@State private var scale = 2
var body: some View {
Text(title)
.font(.headline)
.padding(12)
}
}