Skip to content

Instantly share code, notes, and snippets.

@gtokman
Created March 13, 2021 23:58
Show Gist options
  • Save gtokman/3aefc558bb16b1c8b1ad6dbf0bd8cb2c to your computer and use it in GitHub Desktop.
Save gtokman/3aefc558bb16b1c8b1ad6dbf0bd8cb2c to your computer and use it in GitHub Desktop.
BottomSheet - Part 1
struct ContentView: View {
@State var isPresented: Bool = false
var body: some View {
Button(action: {}, label: {
Text("Present Bottom Sheet")
.padding()
})
.background(Color.blue)
.foregroundColor(.white)
.cornerRadius(10)
.shadow(radius: 10)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment