79100266

Date: 2024-10-18 01:33:35
Score: 2.5
Natty:
Report link

Answer based on https://stackoverflow.com/a/77610649/8218659, but have a problem in Xcode 16 and higher of iOS 17 'Preview(_:traits:_:body:)' is only available in iOS 17.0 or newer

solved:

@available(iOS 17.0, *) // <- Here add
#Preview(traits: .landscapeLeft) { //<- Here
    ContentView()
        //.previewInterfaceOrientation(.landscapeLeft) //<- no longer work
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andres Garcia