Slide 41
Slide 41 text
VStack(alignment: .trailing, spacing: 20) {
Color.white.frame(width: 1)
ForEach(["Dog", "Crocodile", "Horse",
"Rhinoceros"], id: \.self) {
Text($0)
.font(.largeTitle)
.padding()
.background(Color.green)
}
.alignmentGuide(.trailing) { context in
context.width * 2
}
Circle()
.fill(Color.green)
.frame(width: 50, height: 50)
Color.white.frame(width: 1)
}