├── BarChartCalories.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── christianleovido.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── BarChartCalories ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── appBackground.colorset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift └── View │ ├── BarView.swift │ └── HomeView.swift ├── BarChartCaloriesTests ├── BarChartCaloriesTests.swift └── Info.plist └── README.md /BarChartCalories.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 2D8DECE8242D5F1100073D1B /* BarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D8DECE7242D5F1100073D1B /* BarView.swift */; }; 11 | 2DAA8B3C242B824D00D682E0 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DAA8B3B242B824D00D682E0 /* AppDelegate.swift */; }; 12 | 2DAA8B3E242B824D00D682E0 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DAA8B3D242B824D00D682E0 /* SceneDelegate.swift */; }; 13 | 2DAA8B40242B824D00D682E0 /* HomeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DAA8B3F242B824D00D682E0 /* HomeView.swift */; }; 14 | 2DAA8B42242B824E00D682E0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2DAA8B41242B824E00D682E0 /* Assets.xcassets */; }; 15 | 2DAA8B45242B824E00D682E0 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2DAA8B44242B824E00D682E0 /* Preview Assets.xcassets */; }; 16 | 2DAA8B48242B824E00D682E0 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2DAA8B46242B824E00D682E0 /* LaunchScreen.storyboard */; }; 17 | 2DAA8B53242B824E00D682E0 /* BarChartCaloriesTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DAA8B52242B824E00D682E0 /* BarChartCaloriesTests.swift */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 2DAA8B4F242B824E00D682E0 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 2DAA8B30242B824D00D682E0 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 2DAA8B37242B824D00D682E0; 26 | remoteInfo = BarChartCalories; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 2D8DECE7242D5F1100073D1B /* BarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BarView.swift; sourceTree = ""; }; 32 | 2DAA8B38242B824D00D682E0 /* BarChartCalories.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BarChartCalories.app; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | 2DAA8B3B242B824D00D682E0 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 34 | 2DAA8B3D242B824D00D682E0 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; 35 | 2DAA8B3F242B824D00D682E0 /* HomeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeView.swift; sourceTree = ""; }; 36 | 2DAA8B41242B824E00D682E0 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 37 | 2DAA8B44242B824E00D682E0 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 38 | 2DAA8B47242B824E00D682E0 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 39 | 2DAA8B49242B824E00D682E0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 2DAA8B4E242B824E00D682E0 /* BarChartCaloriesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BarChartCaloriesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 2DAA8B52242B824E00D682E0 /* BarChartCaloriesTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BarChartCaloriesTests.swift; sourceTree = ""; }; 42 | 2DAA8B54242B824E00D682E0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 43 | /* End PBXFileReference section */ 44 | 45 | /* Begin PBXFrameworksBuildPhase section */ 46 | 2DAA8B35242B824D00D682E0 /* Frameworks */ = { 47 | isa = PBXFrameworksBuildPhase; 48 | buildActionMask = 2147483647; 49 | files = ( 50 | ); 51 | runOnlyForDeploymentPostprocessing = 0; 52 | }; 53 | 2DAA8B4B242B824E00D682E0 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | ); 58 | runOnlyForDeploymentPostprocessing = 0; 59 | }; 60 | /* End PBXFrameworksBuildPhase section */ 61 | 62 | /* Begin PBXGroup section */ 63 | 2D8DECE6242D5F0000073D1B /* View */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | 2DAA8B3F242B824D00D682E0 /* HomeView.swift */, 67 | 2D8DECE7242D5F1100073D1B /* BarView.swift */, 68 | ); 69 | path = View; 70 | sourceTree = ""; 71 | }; 72 | 2DAA8B2F242B824D00D682E0 = { 73 | isa = PBXGroup; 74 | children = ( 75 | 2DAA8B3A242B824D00D682E0 /* BarChartCalories */, 76 | 2DAA8B51242B824E00D682E0 /* BarChartCaloriesTests */, 77 | 2DAA8B39242B824D00D682E0 /* Products */, 78 | ); 79 | sourceTree = ""; 80 | }; 81 | 2DAA8B39242B824D00D682E0 /* Products */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 2DAA8B38242B824D00D682E0 /* BarChartCalories.app */, 85 | 2DAA8B4E242B824E00D682E0 /* BarChartCaloriesTests.xctest */, 86 | ); 87 | name = Products; 88 | sourceTree = ""; 89 | }; 90 | 2DAA8B3A242B824D00D682E0 /* BarChartCalories */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | 2DAA8B3B242B824D00D682E0 /* AppDelegate.swift */, 94 | 2D8DECE6242D5F0000073D1B /* View */, 95 | 2DAA8B3D242B824D00D682E0 /* SceneDelegate.swift */, 96 | 2DAA8B41242B824E00D682E0 /* Assets.xcassets */, 97 | 2DAA8B46242B824E00D682E0 /* LaunchScreen.storyboard */, 98 | 2DAA8B49242B824E00D682E0 /* Info.plist */, 99 | 2DAA8B43242B824E00D682E0 /* Preview Content */, 100 | ); 101 | path = BarChartCalories; 102 | sourceTree = ""; 103 | }; 104 | 2DAA8B43242B824E00D682E0 /* Preview Content */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 2DAA8B44242B824E00D682E0 /* Preview Assets.xcassets */, 108 | ); 109 | path = "Preview Content"; 110 | sourceTree = ""; 111 | }; 112 | 2DAA8B51242B824E00D682E0 /* BarChartCaloriesTests */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | 2DAA8B52242B824E00D682E0 /* BarChartCaloriesTests.swift */, 116 | 2DAA8B54242B824E00D682E0 /* Info.plist */, 117 | ); 118 | path = BarChartCaloriesTests; 119 | sourceTree = ""; 120 | }; 121 | /* End PBXGroup section */ 122 | 123 | /* Begin PBXNativeTarget section */ 124 | 2DAA8B37242B824D00D682E0 /* BarChartCalories */ = { 125 | isa = PBXNativeTarget; 126 | buildConfigurationList = 2DAA8B57242B824E00D682E0 /* Build configuration list for PBXNativeTarget "BarChartCalories" */; 127 | buildPhases = ( 128 | 2DAA8B34242B824D00D682E0 /* Sources */, 129 | 2DAA8B35242B824D00D682E0 /* Frameworks */, 130 | 2DAA8B36242B824D00D682E0 /* Resources */, 131 | ); 132 | buildRules = ( 133 | ); 134 | dependencies = ( 135 | ); 136 | name = BarChartCalories; 137 | productName = BarChartCalories; 138 | productReference = 2DAA8B38242B824D00D682E0 /* BarChartCalories.app */; 139 | productType = "com.apple.product-type.application"; 140 | }; 141 | 2DAA8B4D242B824E00D682E0 /* BarChartCaloriesTests */ = { 142 | isa = PBXNativeTarget; 143 | buildConfigurationList = 2DAA8B5A242B824E00D682E0 /* Build configuration list for PBXNativeTarget "BarChartCaloriesTests" */; 144 | buildPhases = ( 145 | 2DAA8B4A242B824E00D682E0 /* Sources */, 146 | 2DAA8B4B242B824E00D682E0 /* Frameworks */, 147 | 2DAA8B4C242B824E00D682E0 /* Resources */, 148 | ); 149 | buildRules = ( 150 | ); 151 | dependencies = ( 152 | 2DAA8B50242B824E00D682E0 /* PBXTargetDependency */, 153 | ); 154 | name = BarChartCaloriesTests; 155 | productName = BarChartCaloriesTests; 156 | productReference = 2DAA8B4E242B824E00D682E0 /* BarChartCaloriesTests.xctest */; 157 | productType = "com.apple.product-type.bundle.unit-test"; 158 | }; 159 | /* End PBXNativeTarget section */ 160 | 161 | /* Begin PBXProject section */ 162 | 2DAA8B30242B824D00D682E0 /* Project object */ = { 163 | isa = PBXProject; 164 | attributes = { 165 | LastSwiftUpdateCheck = 1130; 166 | LastUpgradeCheck = 1130; 167 | ORGANIZATIONNAME = "Christian Leovido"; 168 | TargetAttributes = { 169 | 2DAA8B37242B824D00D682E0 = { 170 | CreatedOnToolsVersion = 11.3.1; 171 | }; 172 | 2DAA8B4D242B824E00D682E0 = { 173 | CreatedOnToolsVersion = 11.3.1; 174 | TestTargetID = 2DAA8B37242B824D00D682E0; 175 | }; 176 | }; 177 | }; 178 | buildConfigurationList = 2DAA8B33242B824D00D682E0 /* Build configuration list for PBXProject "BarChartCalories" */; 179 | compatibilityVersion = "Xcode 9.3"; 180 | developmentRegion = en; 181 | hasScannedForEncodings = 0; 182 | knownRegions = ( 183 | en, 184 | Base, 185 | ); 186 | mainGroup = 2DAA8B2F242B824D00D682E0; 187 | productRefGroup = 2DAA8B39242B824D00D682E0 /* Products */; 188 | projectDirPath = ""; 189 | projectRoot = ""; 190 | targets = ( 191 | 2DAA8B37242B824D00D682E0 /* BarChartCalories */, 192 | 2DAA8B4D242B824E00D682E0 /* BarChartCaloriesTests */, 193 | ); 194 | }; 195 | /* End PBXProject section */ 196 | 197 | /* Begin PBXResourcesBuildPhase section */ 198 | 2DAA8B36242B824D00D682E0 /* Resources */ = { 199 | isa = PBXResourcesBuildPhase; 200 | buildActionMask = 2147483647; 201 | files = ( 202 | 2DAA8B48242B824E00D682E0 /* LaunchScreen.storyboard in Resources */, 203 | 2DAA8B45242B824E00D682E0 /* Preview Assets.xcassets in Resources */, 204 | 2DAA8B42242B824E00D682E0 /* Assets.xcassets in Resources */, 205 | ); 206 | runOnlyForDeploymentPostprocessing = 0; 207 | }; 208 | 2DAA8B4C242B824E00D682E0 /* Resources */ = { 209 | isa = PBXResourcesBuildPhase; 210 | buildActionMask = 2147483647; 211 | files = ( 212 | ); 213 | runOnlyForDeploymentPostprocessing = 0; 214 | }; 215 | /* End PBXResourcesBuildPhase section */ 216 | 217 | /* Begin PBXSourcesBuildPhase section */ 218 | 2DAA8B34242B824D00D682E0 /* Sources */ = { 219 | isa = PBXSourcesBuildPhase; 220 | buildActionMask = 2147483647; 221 | files = ( 222 | 2D8DECE8242D5F1100073D1B /* BarView.swift in Sources */, 223 | 2DAA8B3C242B824D00D682E0 /* AppDelegate.swift in Sources */, 224 | 2DAA8B3E242B824D00D682E0 /* SceneDelegate.swift in Sources */, 225 | 2DAA8B40242B824D00D682E0 /* HomeView.swift in Sources */, 226 | ); 227 | runOnlyForDeploymentPostprocessing = 0; 228 | }; 229 | 2DAA8B4A242B824E00D682E0 /* Sources */ = { 230 | isa = PBXSourcesBuildPhase; 231 | buildActionMask = 2147483647; 232 | files = ( 233 | 2DAA8B53242B824E00D682E0 /* BarChartCaloriesTests.swift in Sources */, 234 | ); 235 | runOnlyForDeploymentPostprocessing = 0; 236 | }; 237 | /* End PBXSourcesBuildPhase section */ 238 | 239 | /* Begin PBXTargetDependency section */ 240 | 2DAA8B50242B824E00D682E0 /* PBXTargetDependency */ = { 241 | isa = PBXTargetDependency; 242 | target = 2DAA8B37242B824D00D682E0 /* BarChartCalories */; 243 | targetProxy = 2DAA8B4F242B824E00D682E0 /* PBXContainerItemProxy */; 244 | }; 245 | /* End PBXTargetDependency section */ 246 | 247 | /* Begin PBXVariantGroup section */ 248 | 2DAA8B46242B824E00D682E0 /* LaunchScreen.storyboard */ = { 249 | isa = PBXVariantGroup; 250 | children = ( 251 | 2DAA8B47242B824E00D682E0 /* Base */, 252 | ); 253 | name = LaunchScreen.storyboard; 254 | sourceTree = ""; 255 | }; 256 | /* End PBXVariantGroup section */ 257 | 258 | /* Begin XCBuildConfiguration section */ 259 | 2DAA8B55242B824E00D682E0 /* Debug */ = { 260 | isa = XCBuildConfiguration; 261 | buildSettings = { 262 | ALWAYS_SEARCH_USER_PATHS = NO; 263 | CLANG_ANALYZER_NONNULL = YES; 264 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 265 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 266 | CLANG_CXX_LIBRARY = "libc++"; 267 | CLANG_ENABLE_MODULES = YES; 268 | CLANG_ENABLE_OBJC_ARC = YES; 269 | CLANG_ENABLE_OBJC_WEAK = YES; 270 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 271 | CLANG_WARN_BOOL_CONVERSION = YES; 272 | CLANG_WARN_COMMA = YES; 273 | CLANG_WARN_CONSTANT_CONVERSION = YES; 274 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 275 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 276 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 277 | CLANG_WARN_EMPTY_BODY = YES; 278 | CLANG_WARN_ENUM_CONVERSION = YES; 279 | CLANG_WARN_INFINITE_RECURSION = YES; 280 | CLANG_WARN_INT_CONVERSION = YES; 281 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 282 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 283 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 284 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 285 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 286 | CLANG_WARN_STRICT_PROTOTYPES = YES; 287 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 288 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 289 | CLANG_WARN_UNREACHABLE_CODE = YES; 290 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 291 | COPY_PHASE_STRIP = NO; 292 | DEBUG_INFORMATION_FORMAT = dwarf; 293 | ENABLE_STRICT_OBJC_MSGSEND = YES; 294 | ENABLE_TESTABILITY = YES; 295 | GCC_C_LANGUAGE_STANDARD = gnu11; 296 | GCC_DYNAMIC_NO_PIC = NO; 297 | GCC_NO_COMMON_BLOCKS = YES; 298 | GCC_OPTIMIZATION_LEVEL = 0; 299 | GCC_PREPROCESSOR_DEFINITIONS = ( 300 | "DEBUG=1", 301 | "$(inherited)", 302 | ); 303 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 304 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 305 | GCC_WARN_UNDECLARED_SELECTOR = YES; 306 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 307 | GCC_WARN_UNUSED_FUNCTION = YES; 308 | GCC_WARN_UNUSED_VARIABLE = YES; 309 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 310 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 311 | MTL_FAST_MATH = YES; 312 | ONLY_ACTIVE_ARCH = YES; 313 | SDKROOT = iphoneos; 314 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 315 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 316 | }; 317 | name = Debug; 318 | }; 319 | 2DAA8B56242B824E00D682E0 /* Release */ = { 320 | isa = XCBuildConfiguration; 321 | buildSettings = { 322 | ALWAYS_SEARCH_USER_PATHS = NO; 323 | CLANG_ANALYZER_NONNULL = YES; 324 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 325 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 326 | CLANG_CXX_LIBRARY = "libc++"; 327 | CLANG_ENABLE_MODULES = YES; 328 | CLANG_ENABLE_OBJC_ARC = YES; 329 | CLANG_ENABLE_OBJC_WEAK = YES; 330 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 331 | CLANG_WARN_BOOL_CONVERSION = YES; 332 | CLANG_WARN_COMMA = YES; 333 | CLANG_WARN_CONSTANT_CONVERSION = YES; 334 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 335 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 336 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 337 | CLANG_WARN_EMPTY_BODY = YES; 338 | CLANG_WARN_ENUM_CONVERSION = YES; 339 | CLANG_WARN_INFINITE_RECURSION = YES; 340 | CLANG_WARN_INT_CONVERSION = YES; 341 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 342 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 343 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 344 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 345 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 346 | CLANG_WARN_STRICT_PROTOTYPES = YES; 347 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 348 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 349 | CLANG_WARN_UNREACHABLE_CODE = YES; 350 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 351 | COPY_PHASE_STRIP = NO; 352 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 353 | ENABLE_NS_ASSERTIONS = NO; 354 | ENABLE_STRICT_OBJC_MSGSEND = YES; 355 | GCC_C_LANGUAGE_STANDARD = gnu11; 356 | GCC_NO_COMMON_BLOCKS = YES; 357 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 358 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 359 | GCC_WARN_UNDECLARED_SELECTOR = YES; 360 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 361 | GCC_WARN_UNUSED_FUNCTION = YES; 362 | GCC_WARN_UNUSED_VARIABLE = YES; 363 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 364 | MTL_ENABLE_DEBUG_INFO = NO; 365 | MTL_FAST_MATH = YES; 366 | SDKROOT = iphoneos; 367 | SWIFT_COMPILATION_MODE = wholemodule; 368 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 369 | VALIDATE_PRODUCT = YES; 370 | }; 371 | name = Release; 372 | }; 373 | 2DAA8B58242B824E00D682E0 /* Debug */ = { 374 | isa = XCBuildConfiguration; 375 | buildSettings = { 376 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 377 | CODE_SIGN_STYLE = Automatic; 378 | DEVELOPMENT_ASSET_PATHS = "\"BarChartCalories/Preview Content\""; 379 | DEVELOPMENT_TEAM = 7FFBU6H3CE; 380 | ENABLE_PREVIEWS = YES; 381 | INFOPLIST_FILE = BarChartCalories/Info.plist; 382 | LD_RUNPATH_SEARCH_PATHS = ( 383 | "$(inherited)", 384 | "@executable_path/Frameworks", 385 | ); 386 | PRODUCT_BUNDLE_IDENTIFIER = christianleovido.BarChartCalories; 387 | PRODUCT_NAME = "$(TARGET_NAME)"; 388 | SWIFT_VERSION = 5.0; 389 | TARGETED_DEVICE_FAMILY = "1,2"; 390 | }; 391 | name = Debug; 392 | }; 393 | 2DAA8B59242B824E00D682E0 /* Release */ = { 394 | isa = XCBuildConfiguration; 395 | buildSettings = { 396 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 397 | CODE_SIGN_STYLE = Automatic; 398 | DEVELOPMENT_ASSET_PATHS = "\"BarChartCalories/Preview Content\""; 399 | DEVELOPMENT_TEAM = 7FFBU6H3CE; 400 | ENABLE_PREVIEWS = YES; 401 | INFOPLIST_FILE = BarChartCalories/Info.plist; 402 | LD_RUNPATH_SEARCH_PATHS = ( 403 | "$(inherited)", 404 | "@executable_path/Frameworks", 405 | ); 406 | PRODUCT_BUNDLE_IDENTIFIER = christianleovido.BarChartCalories; 407 | PRODUCT_NAME = "$(TARGET_NAME)"; 408 | SWIFT_VERSION = 5.0; 409 | TARGETED_DEVICE_FAMILY = "1,2"; 410 | }; 411 | name = Release; 412 | }; 413 | 2DAA8B5B242B824E00D682E0 /* Debug */ = { 414 | isa = XCBuildConfiguration; 415 | buildSettings = { 416 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 417 | BUNDLE_LOADER = "$(TEST_HOST)"; 418 | CODE_SIGN_STYLE = Automatic; 419 | DEVELOPMENT_TEAM = 7FFBU6H3CE; 420 | INFOPLIST_FILE = BarChartCaloriesTests/Info.plist; 421 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 422 | LD_RUNPATH_SEARCH_PATHS = ( 423 | "$(inherited)", 424 | "@executable_path/Frameworks", 425 | "@loader_path/Frameworks", 426 | ); 427 | PRODUCT_BUNDLE_IDENTIFIER = christianleovido.BarChartCaloriesTests; 428 | PRODUCT_NAME = "$(TARGET_NAME)"; 429 | SWIFT_VERSION = 5.0; 430 | TARGETED_DEVICE_FAMILY = "1,2"; 431 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BarChartCalories.app/BarChartCalories"; 432 | }; 433 | name = Debug; 434 | }; 435 | 2DAA8B5C242B824E00D682E0 /* Release */ = { 436 | isa = XCBuildConfiguration; 437 | buildSettings = { 438 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 439 | BUNDLE_LOADER = "$(TEST_HOST)"; 440 | CODE_SIGN_STYLE = Automatic; 441 | DEVELOPMENT_TEAM = 7FFBU6H3CE; 442 | INFOPLIST_FILE = BarChartCaloriesTests/Info.plist; 443 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 444 | LD_RUNPATH_SEARCH_PATHS = ( 445 | "$(inherited)", 446 | "@executable_path/Frameworks", 447 | "@loader_path/Frameworks", 448 | ); 449 | PRODUCT_BUNDLE_IDENTIFIER = christianleovido.BarChartCaloriesTests; 450 | PRODUCT_NAME = "$(TARGET_NAME)"; 451 | SWIFT_VERSION = 5.0; 452 | TARGETED_DEVICE_FAMILY = "1,2"; 453 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BarChartCalories.app/BarChartCalories"; 454 | }; 455 | name = Release; 456 | }; 457 | /* End XCBuildConfiguration section */ 458 | 459 | /* Begin XCConfigurationList section */ 460 | 2DAA8B33242B824D00D682E0 /* Build configuration list for PBXProject "BarChartCalories" */ = { 461 | isa = XCConfigurationList; 462 | buildConfigurations = ( 463 | 2DAA8B55242B824E00D682E0 /* Debug */, 464 | 2DAA8B56242B824E00D682E0 /* Release */, 465 | ); 466 | defaultConfigurationIsVisible = 0; 467 | defaultConfigurationName = Release; 468 | }; 469 | 2DAA8B57242B824E00D682E0 /* Build configuration list for PBXNativeTarget "BarChartCalories" */ = { 470 | isa = XCConfigurationList; 471 | buildConfigurations = ( 472 | 2DAA8B58242B824E00D682E0 /* Debug */, 473 | 2DAA8B59242B824E00D682E0 /* Release */, 474 | ); 475 | defaultConfigurationIsVisible = 0; 476 | defaultConfigurationName = Release; 477 | }; 478 | 2DAA8B5A242B824E00D682E0 /* Build configuration list for PBXNativeTarget "BarChartCaloriesTests" */ = { 479 | isa = XCConfigurationList; 480 | buildConfigurations = ( 481 | 2DAA8B5B242B824E00D682E0 /* Debug */, 482 | 2DAA8B5C242B824E00D682E0 /* Release */, 483 | ); 484 | defaultConfigurationIsVisible = 0; 485 | defaultConfigurationName = Release; 486 | }; 487 | /* End XCConfigurationList section */ 488 | }; 489 | rootObject = 2DAA8B30242B824D00D682E0 /* Project object */; 490 | } 491 | -------------------------------------------------------------------------------- /BarChartCalories.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BarChartCalories.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /BarChartCalories.xcodeproj/xcuserdata/christianleovido.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | BarChartCalories.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /BarChartCalories/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // BarChartCalories 4 | // 5 | // Created by Christian Leovido on 25/03/2020. 6 | // Copyright © 2020 Christian Leovido. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | 15 | 16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 17 | // Override point for customization after application launch. 18 | return true 19 | } 20 | 21 | // MARK: UISceneSession Lifecycle 22 | 23 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 24 | // Called when a new scene session is being created. 25 | // Use this method to select a configuration to create the new scene with. 26 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 27 | } 28 | 29 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { 30 | // Called when the user discards a scene session. 31 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. 32 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return. 33 | } 34 | 35 | 36 | } 37 | 38 | -------------------------------------------------------------------------------- /BarChartCalories/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } -------------------------------------------------------------------------------- /BarChartCalories/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /BarChartCalories/Assets.xcassets/appBackground.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "1.000", 13 | "alpha" : "1.000", 14 | "blue" : "1.000", 15 | "green" : "1.000" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "light" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "1.000", 31 | "alpha" : "1.000", 32 | "blue" : "0.333", 33 | "green" : "0.173" 34 | } 35 | } 36 | }, 37 | { 38 | "idiom" : "universal", 39 | "appearances" : [ 40 | { 41 | "appearance" : "luminosity", 42 | "value" : "dark" 43 | } 44 | ], 45 | "color" : { 46 | "color-space" : "srgb", 47 | "components" : { 48 | "red" : "0.090", 49 | "alpha" : "1.000", 50 | "blue" : "0.302", 51 | "green" : "0.000" 52 | } 53 | } 54 | } 55 | ] 56 | } -------------------------------------------------------------------------------- /BarChartCalories/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /BarChartCalories/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UIApplicationSceneManifest 24 | 25 | UIApplicationSupportsMultipleScenes 26 | 27 | UISceneConfigurations 28 | 29 | UIWindowSceneSessionRoleApplication 30 | 31 | 32 | UISceneConfigurationName 33 | Default Configuration 34 | UISceneDelegateClassName 35 | $(PRODUCT_MODULE_NAME).SceneDelegate 36 | 37 | 38 | 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | armv7 45 | 46 | UISupportedInterfaceOrientations 47 | 48 | UIInterfaceOrientationPortrait 49 | UIInterfaceOrientationLandscapeLeft 50 | UIInterfaceOrientationLandscapeRight 51 | 52 | UISupportedInterfaceOrientations~ipad 53 | 54 | UIInterfaceOrientationPortrait 55 | UIInterfaceOrientationPortraitUpsideDown 56 | UIInterfaceOrientationLandscapeLeft 57 | UIInterfaceOrientationLandscapeRight 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /BarChartCalories/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /BarChartCalories/SceneDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SceneDelegate.swift 3 | // BarChartCalories 4 | // 5 | // Created by Christian Leovido on 25/03/2020. 6 | // Copyright © 2020 Christian Leovido. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import SwiftUI 11 | 12 | class SceneDelegate: UIResponder, UIWindowSceneDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { 18 | // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. 19 | // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. 20 | // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). 21 | 22 | // Create the SwiftUI view that provides the window contents. 23 | let contentView = HomeView() 24 | 25 | // Use a UIHostingController as window root view controller. 26 | if let windowScene = scene as? UIWindowScene { 27 | let window = UIWindow(windowScene: windowScene) 28 | window.rootViewController = UIHostingController(rootView: contentView) 29 | self.window = window 30 | window.makeKeyAndVisible() 31 | } 32 | } 33 | 34 | func sceneDidDisconnect(_ scene: UIScene) { 35 | // Called as the scene is being released by the system. 36 | // This occurs shortly after the scene enters the background, or when its session is discarded. 37 | // Release any resources associated with this scene that can be re-created the next time the scene connects. 38 | // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead). 39 | } 40 | 41 | func sceneDidBecomeActive(_ scene: UIScene) { 42 | // Called when the scene has moved from an inactive state to an active state. 43 | // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. 44 | } 45 | 46 | func sceneWillResignActive(_ scene: UIScene) { 47 | // Called when the scene will move from an active state to an inactive state. 48 | // This may occur due to temporary interruptions (ex. an incoming phone call). 49 | } 50 | 51 | func sceneWillEnterForeground(_ scene: UIScene) { 52 | // Called as the scene transitions from the background to the foreground. 53 | // Use this method to undo the changes made on entering the background. 54 | } 55 | 56 | func sceneDidEnterBackground(_ scene: UIScene) { 57 | // Called as the scene transitions from the foreground to the background. 58 | // Use this method to save data, release shared resources, and store enough scene-specific state information 59 | // to restore the scene back to its current state. 60 | } 61 | 62 | 63 | } 64 | 65 | -------------------------------------------------------------------------------- /BarChartCalories/View/BarView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BarView.swift 3 | // BarChartCalories 4 | // 5 | // Created by Christian Leovido on 26/03/2020. 6 | // Copyright © 2020 Christian Leovido. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct BarView: View { 12 | 13 | var height: CGFloat 14 | var day: String 15 | 16 | var body: some View { 17 | VStack { 18 | ZStack(alignment: .bottom) { 19 | Capsule() 20 | .foregroundColor(Color.white) 21 | .foregroundColor(Color.black) 22 | 23 | .frame(width: 25, height: 300, alignment: .bottom) 24 | Capsule() 25 | .foregroundColor(Color(#colorLiteral(red: 0.5843137503, green: 0.8235294223, blue: 0.4196078479, alpha: 1))) 26 | .frame(width: 25, height: height, alignment: .bottom) 27 | } 28 | Text(day) 29 | .font(.headline) 30 | .foregroundColor(.white) 31 | .padding(.top, 10) 32 | .padding(.bottom, 10) 33 | Text("\(calculatePercentage(height: height))%") 34 | .font(.footnote) 35 | .foregroundColor(.white) 36 | } 37 | .padding([.leading, .trailing], 10) 38 | } 39 | 40 | func calculatePercentage(height: CGFloat) -> String { 41 | let f = Float(height / 300 * 100).rounded(.up) 42 | return Int(f).description 43 | } 44 | } 45 | 46 | 47 | struct BarView_Previews: PreviewProvider { 48 | static var previews: some View { 49 | BarView(height: 300, day: "F") 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /BarChartCalories/View/HomeView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // HomeView.swift 3 | // BarChartCalories 4 | // 5 | // Created by Christian Leovido on 25/03/2020. 6 | // Copyright © 2020 Christian Leovido. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct HomeView: View { 12 | 13 | var data: [[CGFloat]] = [ 14 | [10, 200, 140, 170, 40, 20, 180], 15 | [200, 180, 150, 135, 90, 130, 80], 16 | [200, 190, 180, 170, 140, 30, 190].reversed() 17 | ] 18 | 19 | @State private var selection = 1 20 | @State private var calorieLimit = 2500 21 | @State private var showingAlert = false 22 | 23 | var body: some View { 24 | NavigationView { 25 | GeometryReader { geo in 26 | ZStack { 27 | Color("appBackground").edgesIgnoringSafeArea(.all) 28 | VStack(alignment: .leading) { 29 | VStack(alignment: .leading) { 30 | Text("Calorie intake") 31 | .font(.title) 32 | .fontWeight(.heavy) 33 | .foregroundColor(Color.white) 34 | .padding(.bottom, 10) 35 | Text("Your daily calorie limit intake") 36 | .font(.headline) 37 | .foregroundColor(Color.white) 38 | Text("\(self.calorieLimit)kcal") 39 | .font(.title) 40 | .fontWeight(.heavy) 41 | .foregroundColor(Color.white) 42 | } 43 | .padding(.leading, 10) 44 | 45 | Picker("Time of day filter", selection: self.$selection) { 46 | Text("Morning") 47 | .tag(0) 48 | .foregroundColor(Color.white) 49 | Text("Afternoon") 50 | .tag(1) 51 | .foregroundColor(Color.white) 52 | Text("Night") 53 | .tag(2) 54 | .foregroundColor(Color.white) 55 | } 56 | .pickerStyle(SegmentedPickerStyle()) 57 | .padding(.bottom) 58 | HStack { 59 | BarView(height: self.data[self.selection][0], day: "M") 60 | BarView(height: self.data[self.selection][1], day: "T") 61 | BarView(height: self.data[self.selection][2], day: "W") 62 | BarView(height: self.data[self.selection][3], day: "TH") 63 | BarView(height: self.data[self.selection][4], day: "F") 64 | BarView(height: self.data[self.selection][5], day: "SA") 65 | BarView(height: self.data[self.selection][6], day: "SU") 66 | } 67 | .animation(.default) 68 | .frame(width: geo.size.width) 69 | } 70 | } 71 | } 72 | } 73 | } 74 | } 75 | 76 | struct ContentView_Previews: PreviewProvider { 77 | static var previews: some View { 78 | HomeView() 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /BarChartCaloriesTests/BarChartCaloriesTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BarChartCaloriesTests.swift 3 | // BarChartCaloriesTests 4 | // 5 | // Created by Christian Leovido on 25/03/2020. 6 | // Copyright © 2020 Christian Leovido. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import BarChartCalories 11 | 12 | class BarChartCaloriesTests: XCTestCase { 13 | 14 | override func setUp() { 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | } 21 | 22 | func testExample() { 23 | // This is an example of a functional test case. 24 | // Use XCTAssert and related functions to verify your tests produce the correct results. 25 | } 26 | 27 | func testPerformanceExample() { 28 | // This is an example of a performance test case. 29 | self.measure { 30 | // Put the code you want to measure the time of here. 31 | } 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /BarChartCaloriesTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BarChartCalories 2 | Application to track and display analytics of calories, exercise data, heart rate, etc. 3 | 4 | # Features 5 | - SwiftUI 6 | - Animations 7 | 8 | ## TODO 9 | - [ ] Login screen 10 | - [ ] Authentication 11 | - [ ] Filtering data 12 | - [ ] Charts 13 | - [ ] Analytics 14 | 15 | # Screenshots 16 | 17 | ![](https://user-images.githubusercontent.com/18484997/77752576-b8814c80-701f-11ea-8e92-ce4756f02d85.png) 18 | --------------------------------------------------------------------------------