
Обычно вы можете изменить символ SF следующим образом:
Код: Выделить всё
Image(systemName: "checkmark").fontWeight(.bold)
Код: Выделить всё
List {
ForEach(events) { event in
Text(event)
.swipeActions(edge: .leading) {
Button(action: {}) {
Image(systemName: "checkmark")
.fontWeight(.bold) //
Подробнее здесь: [url]https://stackoverflow.com/questions/78802803/how-can-i-change-the-font-weight-of-an-sf-symbol-in-a-list-swipe-action-in-swift[/url]