struct ContentView: View {
   var body: some View {
      VStack {
         HStack {
            Button("Cancel", role: .destructive) {
               print("Cancel Action")
            }
            .buttonStyle(.glass(.clear))
            Spacer()
            Button("Send", role: .confirm) {
               print("Send Information")
            }
            .buttonStyle(.glassProminent)
         }
         Spacer()
      }.padding()
      .background(
         Image("Toronto")
            .resizable()
            .scaledToFill()
            .ignoresSafeArea()
      )
   }
}