Created
June 10, 2022 09:31
-
-
Save meyusufdemirci/1bacda90d7d299570b8bfe97e925ddb7 to your computer and use it in GitHub Desktop.
What is New in SwiftUI, WWDC 22 Article
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
var body: some View { | |
ViewThatFits { | |
Text("Hello, I am the longer text and most probably I will be visible only in the landscape mode") | |
.frame(width: 700, height: 300) | |
Text("Hello, I am the shorter text") | |
.frame(width: 300, height: 100) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment