in

It’s not what you think

It's not what you think | swift-memes, image-memes | ProgrammerHumor.io
swift-memes, image-memes | ProgrammerHumor.io

Content

7 9 11 12 13 14 15 16 17 18 19 20 21 22 23 24 7 25 8 import SwiftUI 10 struct AnimalSexImage: View let sex: Animal.Sex var body: some View switch sex case .female: Image ("female") .resizable () .scaledToFit () case .male: Image ("male") . resizable () .scaledToFit () case mixed: Image (systemName: "questionmark") .resizable () .scaledToFit () case .unknown: Image (systemName: "square.grid.22") .resizable () .scaledToFit () ?