Mercurial > public > lazybear
changeset 150:35f742395416
Exclude config files
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 17 Feb 2021 18:54:05 +0100 |
parents | fe65a249817d |
children | d0018fde0b2d |
files | .gitignore lazybear/Persistence.swift lazybear/Sandbox.xcconfig lazybear/Tests/TestAPI.swift lazybear/UI/Row.swift lazybear/UI/Watchlist.swift |
diffstat | 6 files changed, 93 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/.gitignore Wed Feb 17 17:59:10 2021 +0100 +++ b/.gitignore Wed Feb 17 18:54:05 2021 +0100 @@ -1,2 +1,4 @@ .DS_Store lazybear/.DS_Store +lazybear/Sandbox.xcconfig +lazybear/Production.xconfig
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Persistence.swift Wed Feb 17 18:54:05 2021 +0100 @@ -0,0 +1,20 @@ +// +// Persistence.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 17/2/21. +// + +import SwiftUI + +struct Persistence: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct Persistence_Previews: PreviewProvider { + static var previews: some View { + Persistence() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Sandbox.xcconfig Wed Feb 17 18:54:05 2021 +0100 @@ -0,0 +1,11 @@ +// +// Config.xcconfig +// LazyBear +// +// Created by Dennis Concepción Martín on 17/2/21. +// + +// Configuration settings file format documentation can be found at: +// https://help.apple.com/xcode/#/dev745c5c974 + +API_KEY = 1234
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Tests/TestAPI.swift Wed Feb 17 18:54:05 2021 +0100 @@ -0,0 +1,20 @@ +// +// TestAPI.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 17/2/21. +// + +import SwiftUI + +struct TestAPI: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct TestAPI_Previews: PreviewProvider { + static var previews: some View { + TestAPI() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/UI/Row.swift Wed Feb 17 18:54:05 2021 +0100 @@ -0,0 +1,20 @@ +// +// Row.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 17/2/21. +// + +import SwiftUI + +struct Row: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct Row_Previews: PreviewProvider { + static var previews: some View { + Row() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/UI/Watchlist.swift Wed Feb 17 18:54:05 2021 +0100 @@ -0,0 +1,20 @@ +// +// Watchlist.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 17/2/21. +// + +import SwiftUI + +struct Watchlist: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct Watchlist_Previews: PreviewProvider { + static var previews: some View { + Watchlist() + } +}