Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created March 11, 2024 23:07
Show Gist options
  • Select an option

  • Save takoikatakotako/0d06a9f31bd458c2751b80d910b158f8 to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/0d06a9f31bd458c2751b80d910b158f8 to your computer and use it in GitHub Desktop.
Buttonが押されたら文字を変える
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