Created
March 11, 2024 23:07
-
-
Save takoikatakotako/0d06a9f31bd458c2751b80d910b158f8 to your computer and use it in GitHub Desktop.
Buttonが押されたら文字を変える
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| struct ContentView: View { | |
| @State var text = "Snorlax" | |
| var body: some View { | |
| VStack { | |
| Text(text) | |
| Button(action: { | |
| text = "Forever" | |
| }) { | |
| Text("Tap Me!!") | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment