Skip to content

Instantly share code, notes, and snippets.

@rtking1993
Last active June 5, 2019 16:31
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 rtking1993/8a75a007e64bd319d66211184a246f04 to your computer and use it in GitHub Desktop.
Save rtking1993/8a75a007e64bd319d66211184a246f04 to your computer and use it in GitHub Desktop.
Animal Row for each animal in Safari Animals
// MARK: - Frameworks
import SwiftUI
// MARK: - AnimalRow
struct AnimalRow: View {
var animal: Animal
var body: some View {
HStack {
Text(animal.name)
Spacer()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment