Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
kennic committed Sep 13, 2023
1 parent 185b037 commit dd2c180
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FrameLayoutKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FrameLayoutKit'
s.version = '6.7.1'
s.version = '6.7.2'
s.summary = 'FrameLayoutKit is a super fast and easy to use layout kit'
s.description = <<-DESC
An auto layout kit helps you to layout your UI easier, faster and more effective with operand syntax and nested functions
Expand Down
4 changes: 2 additions & 2 deletions FrameLayoutKit/Classes/FLSkeletonView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ public class FLSkeletonView: UIView {
}
}

func startShimmering(duration: TimeInterval = 1.0, repeatCount: Float = HUGE, repeatDuration: TimeInterval = 0) {
public func startShimmering(duration: TimeInterval = 1.0, repeatCount: Float = HUGE, repeatDuration: TimeInterval = 0) {
animation.duration = duration
animation.repeatCount = repeatCount
animation.repeatDuration = repeatDuration
gradient.add(animation, forKey: "shimmer")
}

func stopShimmering() {
public func stopShimmering() {
layer.mask?.removeAllAnimations()
layer.mask = nil
}
Expand Down

0 comments on commit dd2c180

Please sign in to comment.