# HG changeset patch # User Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> # Date 1614535812 0 # Node ID 1c541670fee775fa461d13657ce4b842ef7bc76e # Parent 7a159f0d5cf0e744e6edb86ae24879842466d213 Test push refresh ScrollView diff -r 7a159f0d5cf0 -r 1c541670fee7 LazyBear/Tests/TestPullScroll.swift --- a/LazyBear/Tests/TestPullScroll.swift Sun Feb 28 18:10:00 2021 +0000 +++ b/LazyBear/Tests/TestPullScroll.swift Sun Feb 28 18:10:12 2021 +0000 @@ -9,7 +9,24 @@ struct TestPullScroll: View { var body: some View { - Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + NavigationView { + ScrollView { + ForEach((1...10), id: \.self) { + Text("Row \($0)") + Divider() + } + } + } + } + + func action() { + print("Action") + } +} + +struct Row: View { + var body: some View { + Text("Hello row") } }