在列表中滑动时的圆角 - SwiftUI

问题描述 投票:0回答:1

使用 Swift3 和 iOS 15,我有以下内容:

enter image description here

Button(role: .destructive) {
    
} label: {
    Label("Delete", systemImage: "trash.fill")
}

如何使滑动时的右侧变圆?我尝试将其放在标签

.cornerRadius(15)
下,但它不会起作用,而且我不想舍入整个列表,只是用户滑动时的右侧部分。

swift swiftui
1个回答
0
投票

据我所知不可能。 有一个很好的包来自定义滑动操作:

"https://github.com/aheze/SwipeActions"
。 享受并感谢软件包分发者。

© www.soinside.com 2019 - 2024. All rights reserved.