Meanwhile here's all you need to trick SwiftUI into removing separators from List (at least as of Xcode 12 beta 1 and iOS 14.0 beta 1) 👌
extension List {
@ViewBuilder func noSeparators() -> some View {
#if swift(>=5.3) // Xcode 12
if #available(iOS 14.0, *) { // iOS 14
self
.accentColor(Color.secondary)
.listStyle(SidebarListStyle())
.onAppear {
UITableView.appearance().backgroundColor = UIColor.systemBackground
}
} else { // iOS 13
self
.listStyle(PlainListStyle())
.onAppear {
UITableView.appearance().separatorStyle = .none
}
}
#else // Xcode 11.5
self
.listStyle(PlainListStyle())
.onAppear {
UITableView.appearance().separatorStyle = .none
}
#endif
}
}
Post
Replies
Boosts
Views
Activity
Posted one in Feedback Assistant: FB7808596
Found a radar about this: http://www.openradar.me/FB7802824
I've done it FB7788379 :)
same here, Xcode 11.4.1 and iOS 13.4
I've noticed that ES_EVENT_TYPE_AUTH_OPEN requires responding with es_respond_flags_result(4) instead of es_respond_auth_result(4). Later one always returns ES_RESPOND_RESULT_ERR_EVENT_TYPE for me and freezes my mac because the auth events are not responded properly. May that be your case also?
ES_EVENT_TYPE_AUTH_OPEN requires responding with es_respond_flags_result(), not es_respond_auth_result() shown in the Message docs example. Are you doing that?
Apparently, ES_EVENT_TYPE_AUTH_OPEN requires responding with es_respond_flags_result(4) instead of es_respond_auth_result(4) at line 16 in your code
It's 2020 now, iCloud Shared Folders appeared on last weeks macOS 10.15.4 betas, but Xcode 11.4 beta still do not have FileProvider for macOS back. On the other hand, FileProvider documentation says it should be available on macOS 10.15 and Catalyst.Any estimations? Should we expect it any time soon or it is delayed for longer than spring?