struct ContentView: View {
private let url = URL(string: "https://developer.apple.com/augmented-reality/quick-look/models/retrotv/tv_retro.usdz")!
var body: some View {
NavigationStack {
VStack {
Text("Hello,鱼大爷")
Model3D(url: url) { model **in**
model
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 500, height: 500)
} placeholder: {
ProgressView()
}
}
.padding()
}
}
}