Skip to content

Instantly share code, notes, and snippets.

@kamimi01
Created September 14, 2022 00:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kamimi01/959acc9bf9959c7de82e15dd321fb646 to your computer and use it in GitHub Desktop.
struct MosterListCellView: View {
var iconName: String
var name: String
var body: some View {
monsterLabel()
}
}
private extension MonsterListCellView {
var monsterLabel: some View {
Label {
Text(name)
} icon: {
Image(iconName)
.resizable()
}
}
var someView: some View {
・・・
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment