Skip to content

Commit fb02464

Browse files
committed
Update ContentView
1 parent f36a53c commit fb02464

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

Example/Shared/ContentView.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ import SwiftUI
1010

1111
struct ContentView: View {
1212
var body: some View {
13-
MatchedGeometryEffectExample()
13+
VStack {
14+
Image(systemName: "globe")
15+
.imageScale(.large)
16+
.foregroundStyle(.tint)
17+
Text("Hello, world!")
18+
}
19+
.padding()
1420
}
1521
}

Example/Shared/Layout/CustomLayout/MyViewThatFitsExample.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import OpenSwiftUI
88
import SwiftUI
99
#endif
1010

11-
// The DL does not fully align since we have not implement canonicalize API yet.
12-
// See https://github.com/OpenSwiftUIProject/OpenSwiftUI/issues/349
1311
struct MyViewThatFitsExample: View {
1412
@State private var showRed = false
1513
var body: some View {

0 commit comments

Comments
 (0)