From 2716d434d3d5e6392e10c452f3205a40e45fdec7 Mon Sep 17 00:00:00 2001 From: Alisa Mylnikova Date: Wed, 2 Sep 2020 16:07:20 +0700 Subject: [PATCH] Fix example --- ActivityIndicatorView.podspec | 2 +- Example/Example/ContentView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ActivityIndicatorView.podspec b/ActivityIndicatorView.podspec index af35c49..8e9da88 100644 --- a/ActivityIndicatorView.podspec +++ b/ActivityIndicatorView.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "ActivityIndicatorView" - s.version = "0.0.3" + s.version = "0.0.4" s.summary = "A number of preset loading indicators created with SwiftUI." s.homepage = 'https://github.com/exyte/ActivityIndicatorView.git' diff --git a/Example/Example/ContentView.swift b/Example/Example/ContentView.swift index 8c6ce37..5bac2fe 100644 --- a/Example/Example/ContentView.swift +++ b/Example/Example/ContentView.swift @@ -37,7 +37,7 @@ struct ContentView: View { ActivityIndicatorView(isVisible: self.$showLoadingIndicator, type: .equalizer) .frame(width: size, height: size) .foregroundColor(.red) - ActivityIndicatorView(isVisible: self.$showLoadingIndicator, type: .growingArc) + ActivityIndicatorView(isVisible: self.$showLoadingIndicator, type: .growingArc()) .frame(width: size, height: size) .foregroundColor(.red) Spacer()