Skip to content

Commit 45d937d

Browse files
authored
Update README.md
1 parent 1990220 commit 45d937d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ To make your view lazily poppable, just put it inside a `LazyPop()` view.
1212

1313
```swift
1414
struct DetailsViewWithLazyPop: View {
15-
@State var item: (Int, String)
1615
var body: some View {
1716
LazyPop(
1817
rootView: Text("Lazy pop enabled. Swipe anywhere to dismiss.")
@@ -24,7 +23,6 @@ If you would like to toggle when the lazy pop is enabled, just pass it a boolean
2423

2524
```swift
2625
struct DetailsViewWithToggleableLazyPop: View {
27-
@State var item: (Int, String)
2826
@State var isEnabled: Bool = true
2927
var body: some View {
3028
LazyPop(

0 commit comments

Comments
 (0)