changeset 31:48fe101fd122

Debugging public access level
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Fri, 30 Apr 2021 18:11:01 +0200
parents 716558986fed
children 8c544ff53df8
files DemoProject/DemoProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved DemoProject/DemoProject.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate DemoProject/DemoProject/ContentView.swift Sources/StockCharts/LineChart/ChartView.swift StockCharts.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate
diffstat 5 files changed, 5 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/DemoProject/DemoProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved	Fri Apr 30 18:09:11 2021 +0200
+++ b/DemoProject/DemoProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved	Fri Apr 30 18:11:01 2021 +0200
@@ -6,7 +6,7 @@
         "repositoryURL": "https://github.com/denniscm190/StockCharts.git",
         "state": {
           "branch": "main",
-          "revision": "44b5c5c6b18e70f157d34c7e037de95ec5a3c5dc",
+          "revision": "0ef4377c88d6a5a78f4f553efd33c03ab4537941",
           "version": null
         }
       }
Binary file DemoProject/DemoProject.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed
--- a/DemoProject/DemoProject/ContentView.swift	Fri Apr 30 18:09:11 2021 +0200
+++ b/DemoProject/DemoProject/ContentView.swift	Fri Apr 30 18:11:01 2021 +0200
@@ -13,7 +13,6 @@
         TabView {
 //            Text("Hello world")
 //            ChartViewPreview(data: generateSampleData(350))
-            
                 .tabItem {
                     Label("ChartView", systemImage: "house")
                 }
--- a/Sources/StockCharts/LineChart/ChartView.swift	Fri Apr 30 18:09:11 2021 +0200
+++ b/Sources/StockCharts/LineChart/ChartView.swift	Fri Apr 30 18:11:01 2021 +0200
@@ -23,12 +23,11 @@
     
     public var body: some View {
         VStack {
-            Text("Hello")
-//            ChartLabel(data: data, dates: dates, hours: hours, indexPosition: $indexPosition)
-//                .opacity(showingIndicators ? 1: 0)
-//                .padding(.vertical)
+            ChartLabel(data: data, dates: dates, hours: hours, indexPosition: $indexPosition)
+                .opacity(showingIndicators ? 1: 0)
+                .padding(.vertical)
 
-//            LineView(data: data, showingIndicators: $showingIndicators, indexPosition: $indexPosition)
+            LineView(data: data, showingIndicators: $showingIndicators, indexPosition: $indexPosition)
         }
     }
 }
Binary file StockCharts.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed