Skip to content

Commit ec55a5d

Browse files
Merge pull request #26 from SimformSolutionsPvtLtd/feature/update_module_access
Update the Access modifier of Module
2 parents 7aa9a7e + d8c21c7 commit ec55a5d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

SSSwiftUIAnimations/Sources/ArrowLeftRightAnimation/LRArrowAnimStyle.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import SwiftUI
99

10-
struct LRArrowAnimStyle {
10+
public struct LRArrowAnimStyle {
1111

1212
// MARK: - Variables
1313

SSSwiftUIAnimations/Sources/ArrowLeftRightAnimation/SSLRArrowView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import SwiftUI
99

10-
struct SSLRArrowView: View {
10+
public struct SSLRArrowView: View {
1111

1212
// MARK: - Variables
1313

@@ -24,7 +24,7 @@ struct SSLRArrowView: View {
2424
var rightArrowViewTap: (() -> Void)?
2525

2626
// MARK: - Body view
27-
var body: some View {
27+
public var body: some View {
2828
HStack(spacing: 20 + arrowViewAnimStyle.circleStrokeSize) {
2929

3030
// Left arrow view

SSSwiftUIAnimations/Sources/ProgressAnimation/ModelClass.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import SwiftUI
99

10-
struct SSProgressViewStyle {
10+
public struct SSProgressViewStyle {
1111
var circleSize: CGFloat
1212
var circleStrokeWidth: CGFloat
1313
var arrowStrokeWidth: CGFloat

SSSwiftUIAnimations/Sources/ProgressAnimation/ProgressView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import SwiftUI
99

10-
struct SSProgressView: View {
10+
public struct SSProgressView: View {
1111

1212
// MARK: - Variables
1313

@@ -54,7 +54,7 @@ struct SSProgressView: View {
5454

5555
@State var bounceEffect: CGFloat = 1.0
5656

57-
var body: some View {
57+
public var body: some View {
5858
ZStack {
5959
// Progress Circle with animation
6060
ProgressCircle(progress: $progress, style: style)

0 commit comments

Comments
 (0)