Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yfujiki/f6b83e0210352199ecf4e12a73a5d5e9 to your computer and use it in GitHub Desktop.
Save yfujiki/f6b83e0210352199ecf4e12a73a5d5e9 to your computer and use it in GitHub Desktop.
struct HeaderView: View {
@State var headerText: String
var body: some View {
HStack {
Text(headerText)
.color(.white)
.padding(10)
}
.frame(width: UIScreen.main.bounds.width, height: 44, alignment: Alignment.leading)
.background(Color.gray)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment