-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37856b4
commit 34fb779
Showing
12 changed files
with
130 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import SwiftUI | ||
|
||
struct ConnectedSheetView: View { | ||
let title: String | ||
|
||
var body: some View { | ||
ZStack { | ||
VStack { | ||
Image("connected") | ||
|
||
Spacer() | ||
} | ||
|
||
VStack(spacing: 8) { | ||
Rectangle() | ||
.foregroundColor(.clear) | ||
.frame(width: 48, height: 4) | ||
.background(Color(red: 0.02, green: 0.17, blue: 0.17).opacity(0.2)) | ||
.cornerRadius(100) | ||
.padding(.top, 8) | ||
|
||
Text(title) | ||
.foregroundColor(.grey8) | ||
.font(.system(size: 20, weight: .semibold, design: .rounded)) | ||
.padding(.top, 168) | ||
|
||
|
||
Text("You can go back to your browser now") | ||
.foregroundColor(Color(red: 0.47, green: 0.53, blue: 0.53)) | ||
.font(.system(size: 16, weight: .medium, design: .rounded)) | ||
|
||
Spacer() | ||
} | ||
} | ||
.presentationDetents([.height(254)]) | ||
.presentationDragIndicator(.hidden) | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
Example/WalletApp/Other/Assets.xcassets/connected.imageset/Contents.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "connected.pdf", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Binary file added
BIN
+746 KB
Example/WalletApp/Other/Assets.xcassets/connected.imageset/connected.pdf
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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