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()