Skip to content

Commit dd2c180

Browse files
committed
no message
1 parent 185b037 commit dd2c180

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

FrameLayoutKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FrameLayoutKit'
3-
s.version = '6.7.1'
3+
s.version = '6.7.2'
44
s.summary = 'FrameLayoutKit is a super fast and easy to use layout kit'
55
s.description = <<-DESC
66
An auto layout kit helps you to layout your UI easier, faster and more effective with operand syntax and nested functions

FrameLayoutKit/Classes/FLSkeletonView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ public class FLSkeletonView: UIView {
5151
}
5252
}
5353

54-
func startShimmering(duration: TimeInterval = 1.0, repeatCount: Float = HUGE, repeatDuration: TimeInterval = 0) {
54+
public func startShimmering(duration: TimeInterval = 1.0, repeatCount: Float = HUGE, repeatDuration: TimeInterval = 0) {
5555
animation.duration = duration
5656
animation.repeatCount = repeatCount
5757
animation.repeatDuration = repeatDuration
5858
gradient.add(animation, forKey: "shimmer")
5959
}
6060

61-
func stopShimmering() {
61+
public func stopShimmering() {
6262
layer.mask?.removeAllAnimations()
6363
layer.mask = nil
6464
}

0 commit comments

Comments
 (0)