面试题答案
一键面试import SwiftUI
struct ContentView: View {
@State private var isButtonTapped = false
var body: some View {
VStack {
Button("点击我") {
withAnimation {
isButtonTapped.toggle()
}
}
Rectangle()
.fill(Color.blue)
.frame(width: 200, height: 100)
.opacity(isButtonTapped ? 0.5 : 1)
}
}
}