Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created October 11, 2019 19:52
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 azamsharp/ef2f058821c9bd517ecaac2f19b51ecc to your computer and use it in GitHub Desktop.
Save azamsharp/ef2f058821c9bd517ecaac2f19b51ecc to your computer and use it in GitHub Desktop.
struct TotalLikes: View {
@EnvironmentObject var userSettings: UserSettings
var body: some View {
HStack {
Text("Total Likes: ")
Text("\(userSettings.likes)")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment