Skip to content

Instantly share code, notes, and snippets.

@vince19972
Created September 9, 2019 23:05
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 vince19972/e9cd9d11cc198e80f51a99efabb7e927 to your computer and use it in GitHub Desktop.
Save vince19972/e9cd9d11cc198e80f51a99efabb7e927 to your computer and use it in GitHub Desktop.
Demo code of environment settings and font in SwiftUI
#if DEBUG
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
.environment(\.font, Font.Typography.mainFont)
.environment(\.colorScheme, .dark)
}
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment