I am trying to present Model view with small size. Is there any way to resize it.
Button("Present") { self.presentingModal = true }
    .padding()
    .sheet(isPresented: $presentingModal) {} 
   content: {
        ModelView(presentedAsModal: $presentingModal)
            }
It presents the model with with default size. I am not able to resize it.
PS: Our goal is to present Modal at centre with custom size.
 
    