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
| import SwiftUI | |
| import PlaygroundSupport | |
| struct Screen: View { | |
| @State var size: CGSize = .zero | |
| var body: some View { | |
| //Lets Start with our Tinder Home Screen Recreate | |
| //First, we need entire background to be gray-ish color. ZStack puts different views on top of each other. | |
| ZStack { |
OlderNewer