SkillAgentSearch skills...

JiggleKit

A SwiftUI package to make Views jiggle.

Install / Use

/learn @visfitness/JiggleKit
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

JiggleKit

Overview

JiggleKit is a revolutionary SwiftUI package that enables your Views to jiggle, like the iPhone home screen "jiggle mode". It has been developed by Vis Fitness for implementing a jiggle-mode-like functionality in the Vis iOS app. We think you're gonna to love it.

A showcase of Vis's Jiggle-Mode schedule editing

<img src="Documentation/appstore.svg" alt="Download Vis on the App Store"/>

[!NOTE] Be sure to check out the package documentation here

Usage

Using this groundbreaking package is easy, as demonstrated by the following example:

struct JigglingRectangle: View {

  var body: some View {
      RoundedRectangle(cornerRadius: 12, style: .continuous)
        .fill(Color.red)
        .frame(width: 64, height: 64)
        // That's it.
        .jiggling()
    }
    .padding()
  }
}

However, for an even jigglier rounded rectangle, one can even set the intensity of the jiggling.

struct VeryJigglingRectangle: View {

  var body: some View {
      RoundedRectangle(cornerRadius: 12, style: .continuous)
        .fill(Color.red)
        .frame(width: 64, height: 64)
        // Now that's some strong jiggling!
        .jiggling(intensity: .vivacious)
    }
    .padding()
  }
}

Copyright and License

Copyright Vis Fitness Inc. Licensed under the MIT License

Credit

This was inspired by this gist

Related Skills

View on GitHub
GitHub Stars43
CategoryDevelopment
Updated3mo ago
Forks3

Languages

Swift

Security Score

87/100

Audited on Dec 23, 2025

No findings