Contents

fill

A variant that fills the symbol.

Declaration

static let fill: SymbolVariants

Discussion

Use this variant with a call to the symbolVariant(_:) modifier to draw filled symbols, for those symbols that have a filled variant:

VStack(spacing: 20) {
    HStack(spacing: 20) {
        Image(systemName: "flag")
        Image(systemName: "heart")
        Image(systemName: "bolt")
        Image(systemName: "star")
    }
    HStack(spacing: 20) {
        Image(systemName: "flag")
        Image(systemName: "heart")
        Image(systemName: "bolt")
        Image(systemName: "star")
    }
    .symbolVariant(.fill)
}

[Image]

See Also

Getting symbol variants