Color Schemes | raywenderlich.com


This is a companion discussion topic for the original entry at https://www.raywenderlich.com/15234721-your-second-ios-and-swiftui-app/lessons/11

this kind of extension works only in BookView.
extension View {
var previewedInAllColorSchemes: some View {
ForEach(
ColorScheme.allCases, id: .self,
content: preferredColorScheme
)
}

}

how can i see it also in DetailsView and ContentView