Created
June 13, 2020 07:35
-
-
Save amosgyamfi/a688ffe1712300ad5799cf7a804f5390 to your computer and use it in GitHub Desktop.
Popup
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
// | |
// ContentView.swift | |
// popup | |
// | |
// Created by Amos Gyamfi on 1.6.2020. | |
// Copyright © 2020 Amos Gyamfi. All rights reserved. | |
// | |
import SwiftUI | |
struct ContentView: View { | |
var body: some View { | |
ZStack { | |
Color(#colorLiteral(red: 0.7882352941, green: 0.7803921569, blue: 0.7803921569, alpha: 1)) | |
.edgesIgnoringSafeArea(.all) | |
VStack { | |
Spacer() | |
VStack (alignment: .leading, spacing: 20) { | |
HStack { | |
Image(systemName: "pencil.circle") | |
Text("Add Project") | |
} | |
Divider() | |
HStack { | |
Image(systemName: "checkmark.circle") | |
Text("Add Task") | |
} | |
}.frame(width: UIScreen.main.bounds.width - 60) | |
.padding() | |
.background(Color(#colorLiteral(red: 0.9568627451, green: 0.9490196078, blue: 0.9450980392, alpha: 1))) | |
.cornerRadius(16) | |
ZStack { | |
Rectangle() | |
.frame(width: UIScreen.main.bounds.width - 30, height: UIScreen.main.bounds.height/15) | |
.foregroundColor(Color(#colorLiteral(red: 0.9568627451, green: 0.9490196078, blue: 0.9450980392, alpha: 1))) | |
.cornerRadius(16) | |
Text("Done") | |
} | |
} | |
} | |
} | |
} | |
struct ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
ContentView() | |
} | |
} |
Author
amosgyamfi
commented
Jun 13, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment