Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 24, 2024 00:55
Show Gist options
  • Select an option

  • Save takoikatakotako/26a6826ba71904e2cf69b5e1ceda193a to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/26a6826ba71904e2cf69b5e1ceda193a to your computer and use it in GitHub Desktop.
SwiftUIでハーフモーダルを表示する
import SwiftUI
struct ContentView: View {
@State var showingSheet = false
var body: some View {
Button(action: {
showingSheet = true
}, label: {
Text("Show Modal!")
})
.sheet(isPresented: $showingSheet) {
Text("Half Modal")
.presentationDetents([.medium])
}
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment