Created
March 13, 2021 23:58
-
-
Save gtokman/3aefc558bb16b1c8b1ad6dbf0bd8cb2c to your computer and use it in GitHub Desktop.
BottomSheet - Part 1
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
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