changeset 331:47e4402a866e

Tests
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Tue, 30 Mar 2021 23:15:19 +0200
parents bd65ad95eae0
children d82e8dd0a828
files LazyBear/Tests/TestFraming.swift
diffstat 1 files changed, 0 insertions(+), 34 deletions(-) [+]
line wrap: on
line diff
--- a/LazyBear/Tests/TestFraming.swift	Tue Mar 30 23:15:15 2021 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-//
-//  TestFraming.swift
-//  LazyBear
-//
-//  Created by Dennis Concepción Martín on 29/3/21.
-//
-
-import SwiftUI
-
-struct TestFraming: View {
-    var body: some View {
-        ZStack {
-            RoundedRectangle(cornerRadius: 20)
-                .fill(Color.blue)
-            
-            VStack {
-                Spacer()
-                Rectangle()
-                    .fill(Color.blue)
-                    .frame(height: 100)
-                    .overlay(
-                        LineView()
-                    )
-            }
-            .padding(.bottom)
-        }
-    }
-}
-
-struct TestFraming_Previews: PreviewProvider {
-    static var previews: some View {
-        TestFraming()
-    }
-}