struct ContentView: View {
   @State private var showInfo = false

   var body: some View {
      VStack {
         Button("Show Information") {
            showInfo.toggle()
         }.padding()
         .buttonStyle(.glassProminent)

         if showInfo {
            Text("This is the information")
               .transition(.scale.animation(.default))
         }
         Spacer()
      }
   }
}