Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spinkit | 17,264 | 341 | 84 | 3 years ago | 9 | October 30, 2019 | 8 | mit | CSS | |
A collection of loading indicators animated with CSS | ||||||||||
React Content Loader | 12,768 | 309 | 446 | 6 months ago | 70 | March 12, 2023 | 9 | mit | TypeScript | |
⚪ SVG-Powered component to easily create skeleton loadings. | ||||||||||
Skeletonview | 12,111 | 24 | 22 days ago | 61 | August 11, 2022 | 62 | mit | Swift | ||
☠️ An elegant way to show users that something is happening and also prepare them to which contents they are awaiting | ||||||||||
Nvactivityindicatorview | 10,318 | 566 | 7 months ago | 46 | October 09, 2020 | 15 | mit | Swift | ||
A collection of awesome loading animations | ||||||||||
Loaders.css | 10,088 | 838 | 147 | 2 years ago | 4 | January 13, 2016 | 14 | CSS | ||
Delightful, performance-focused pure css loading animations. | ||||||||||
Avloadingindicatorview | 9,705 | 6 months ago | n,ull | Java | ||||||
DEPRECATED | ||||||||||
Android Spinkit | 8,413 | 1 | 4 months ago | 3 | May 02, 2020 | 61 | mit | Java | ||
Android loading animations | ||||||||||
Svg Loaders | 5,838 | 2 | 3 | 2 months ago | 1 | February 12, 2019 | 14 | mit | HTML | |
Loading icons and small animations built with pure SVG. | ||||||||||
Bootstrap Modal | 5,072 | 2 | 3 | 4 years ago | 1 | December 31, 2015 | 110 | apache-2.0 | JavaScript | |
Extends the default Bootstrap Modal class. Responsive, stackable, ajax and more. | ||||||||||
Tabanimated | 3,275 | 1 | a month ago | 69 | August 12, 2021 | 38 | mit | Objective-C | ||
A skeleton screen loading framework based on native for iOS. (一个由iOS原生组件映射出骨架屏的框架,包含快速植入,低耦合,兼容复杂视图等特点,提供国内主流骨架屏动画的加载方案,同时支持上拉加载更多、自定制动画。) |
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and start using skeletons to represent final content shapes.
Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler. Once you have your Swift package set up, adding SkeletonUI
as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/CSolanaM/SkeletonUI.git", .branch("master"))
]
CocoaPods is a centralized dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate SkeletonUI into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'SkeletonUI'
import SkeletonUI
import SwiftUI
struct UsersView: View {
@State var users = [String]()
var body: some View {
Text("Finished requesting \(users.count) users!")
.skeleton(with: users.isEmpty)
.onAppear {
DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
self.users = ["John Doe", "Jane Doe", "James Doe", "Judy Doe"]
}
}
}
}
import SkeletonUI
import SwiftUI
struct User: Identifiable {
let id = UUID()
let name: String
}
struct UsersView: View {
@State var users = [User]()
var body: some View {
SkeletonList(with: users, quantity: 6) { loading, user in
Text(user?.name)
.skeleton(with: loading,
animation: .pulse(),
appearance: .solid(color: .red, background: .blue),
shape: .rectangle,
lines: 3,
scales: [1: 0.5])
}
.onAppear {
DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
self.users = [User(name: "John Doe"),
User(name: "Jane Doe"),
User(name: "James Doe"),
User(name: "Judy Doe")]
}
}
}
}
See CHANGELOG.md for details.
See CONTRIBUTING.md for details.
See CODE_OF_CONDUCT.md for details.
SkeletonUI is owned and maintained by CSolanaM. You can follow me on Twitter at @CSolanaM or contact me via email for project updates and releases.
SkeletonUI is released under the MIT license. See LICENSE for details.