# HG changeset patch # User Dennis C. M. # Date 1624890739 -7200 # Node ID 114e4e3d1c7a246c5004da1538bee2fc484c451d # Parent 253e1216e4d2eb3942e6bfc058a2445fad538731 Delete ColorTest.swift committer: GitHub diff -r 253e1216e4d2 -r 114e4e3d1c7a LazyBearWatchOS Extension/Tests/ColorTest.swift --- a/LazyBearWatchOS Extension/Tests/ColorTest.swift Mon Jun 28 16:29:20 2021 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -// -// ColorTest.swift -// LazyBearWatchOS Extension -// -// Created by Dennis Concepción Martín on 28/06/2021. -// - -import SwiftUI - -struct ColorTest: View { - var body: some View { - VStack { - Text("Hello world") - .foregroundColor(.red) - .font(.title) - .fontWeight(.black) - - Text("Hello world") - .foregroundColor(Color(.red)) - .font(.title) - .fontWeight(.black) - } - } -} - -struct ColorTest_Previews: PreviewProvider { - static var previews: some View { - ColorTest() - } -}