Mercurial > public > lazybear
changeset 223:05d1acc290ad
Delete tests
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sun, 28 Feb 2021 18:09:40 +0000 |
parents | 031e4e513ffc |
children | 7a159f0d5cf0 |
files | LazyBear/Tests/TestPullScroll.swift |
diffstat | 1 files changed, 20 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear/Tests/TestPullScroll.swift Sun Feb 28 18:09:40 2021 +0000 @@ -0,0 +1,20 @@ +// +// TestPullScroll.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 28/2/21. +// + +import SwiftUI + +struct TestPullScroll: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct TestPullScroll_Previews: PreviewProvider { + static var previews: some View { + TestPullScroll() + } +}