I found out that app is crashing if using Text with any date and relative style. Any workaround for that?
Code Block struct ContentView: View { var body: some View { ScrollView { Text(Date(), style: .relative) } } }