Update thecellForRowAtIndexPath:method to create the utility buttons– the SWTableViewCell comes with two properties namedleftUtilityButtonsandrightUtilityButtons. These two properties represent the utility buttons to display depending on the swipe direction. You’ll need to create an array of buttons...
import SwiftUI struct DisplayIndicator: View { @State private var showDisplayPickerSheet = false @ObservedObject private var schemeState: SchemeState = .shared var body: some View { Button { showDisplayPickerSheet.toggle() } label: { Text(schemeState.currentDisplay ?? NSLocalizedString("All Displ...