Created
August 15, 2020 04:02
-
-
Save takoikatakotako/5b3bf43d6c2a606b3d5c2bf4575ff7ae to your computer and use it in GitHub Desktop.
画面を横向きにしてプレビューを出す
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 | |
| struct ContentView: View { | |
| var body: some View { | |
| Text("Welcome to swiswiswift.com") | |
| } | |
| } | |
| struct ContentView_Previews: PreviewProvider { | |
| static var previews: some View { | |
| ContentView().previewLayout(.fixed(width: 1344, height: 621)) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment