📙Follow along with the FREE book sample: https://www.bigmountainstudio.com/free-swiftui-book
struct Introduction: View {
var body: some View {
VStack {
Text("GeometryReader")
Image(systemName: "bolt.circle.fill")
GeometryReader { geometry in
Image(systemName: "bolt.circle.fill")
}.border(Color.green)
}.font(.largeTitle)
}
}
struct Introduction: View {
var body: some View {
VStack {
Text("GeometryReader")
Image(systemName: "bolt.circle.fill")
Spacer()
Image(systemName: "bolt.circle.fill")
Spacer()
}.font(.largeTitle)
}
}