SwiftUI TextEditor背景颜色设置

SwiftUI TextEditor直接设置background无效,怎么办?

需先设置.scrollContentBackground(.hidden),然后再设置background,示例如下:

TextEditor(text:  $detail)
.padding()
.scrollContentBackground(.hidden)
.background(Color.gray.opacity(0.06))
.border(theme.themeColor, width: 0.38)

© 版权声明

相关文章

暂无评论

您必须登录才能参与评论!
立即登录
暂无评论...