Skip to content

Instantly share code, notes, and snippets.

@SwiftyAlex
Created April 7, 2020 19:11
Show Gist options
  • Save SwiftyAlex/b4aa8b2f007fd2c468c1b5472b69da20 to your computer and use it in GitHub Desktop.
Save SwiftyAlex/b4aa8b2f007fd2c468c1b5472b69da20 to your computer and use it in GitHub Desktop.
// Container View
struct SomeView: View {
var body: some View {
VStack {
Text("Welcome to our SwiftUI app")
.companyStyled()
FeaturedContentView()
ArticlesScrollView()
FooterView()
}
}
}
// Extension
extension Text {
func companyStyled() -> some View {
self
.font(.custom("Montserrat-Bold", size: 16))
.foregroundColor(.textBlack)
.padding()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment