All Projects → D-32 → Segmentedprogressbar

D-32 / Segmentedprogressbar

Licence: mit
Snapchat / Instagram Stories like progress indicator

Programming Languages

swift
15916 projects
swift3
66 projects

Projects that are alternatives of or similar to Segmentedprogressbar

React Native Vision Camera
📸 The Camera library that sees the vision.
Stars: ✭ 443 (+17.82%)
Mutual labels:  snapchat, instagram
Shellphish
Phishing Tool for 18 social media: Instagram, Facebook, Snapchat, Github, Twitter, Yahoo, Protonmail, Spotify, Netflix, Linkedin, Wordpress, Origin, Steam, Microsoft, InstaFollowers, Gitlab, Pinterest
Stars: ✭ 1,037 (+175.8%)
Mutual labels:  snapchat, instagram
Socialphish
The most complete Phishing Tool, with 32 templates +1 customizable
Stars: ✭ 378 (+0.53%)
Mutual labels:  snapchat, instagram
React Native Story
React native instagram story
Stars: ✭ 144 (-61.7%)
Mutual labels:  snapchat, instagram
FaceFilter
Snapchat and Instagram like Face Filter.
Stars: ✭ 72 (-80.85%)
Mutual labels:  instagram, snapchat
Zuck.js
A javascript library that lets you add stories EVERYWHERE.
Stars: ✭ 3,396 (+803.19%)
Mutual labels:  snapchat, instagram
Stealing Ur Feelings
Winner of Mozilla's $50,000 prize for art and advocacy exploring AI
Stars: ✭ 784 (+108.51%)
Mutual labels:  snapchat, instagram
Hybridcamera
Video and photo camera for iOS
Stars: ✭ 145 (-61.44%)
Mutual labels:  snapchat, instagram
Nextlevel
NextLevel was initally a weekend project that has now grown into a open community of camera platform enthusists. The software provides foundational components for managing media recording, camera interface customization, gestural interaction customization, and image streaming on iOS. The same capabilities can also be found in apps such as Snapchat, Instagram, and Vine.
Stars: ✭ 1,940 (+415.96%)
Mutual labels:  snapchat, instagram
SocialMediaChecker
[ Twitter - Instagram - Snapchat ] Email Checker .
Stars: ✭ 71 (-81.12%)
Mutual labels:  instagram, snapchat
Social Media Profiles Regexs
📇 Extract social media profiles and more with regular expressions
Stars: ✭ 324 (-13.83%)
Mutual labels:  snapchat, instagram
Jetinstagram
JetInstagram is an Instagram UI clone app built with Jetpack Compose.
Stars: ✭ 350 (-6.91%)
Mutual labels:  instagram
Ypimagepicker
📸 Instagram-like image picker & filters for iOS
Stars: ✭ 3,661 (+873.67%)
Mutual labels:  instagram
Socialbox Termux
SocialBox is a Bruteforce Attack Framework [ Facebook , Gmail , Instagram ,Twitter ] , Coded By Belahsan Ouerghi Edit By init__0 for termux on android
Stars: ✭ 324 (-13.83%)
Mutual labels:  instagram
Instagram Java Scraper
Instagram Java Scraper. Get account information, photos, videos and comments.
Stars: ✭ 335 (-10.9%)
Mutual labels:  instagram
Realm Tasks
To Do app built with Realm, inspired by Clear for iOS
Stars: ✭ 369 (-1.86%)
Mutual labels:  cocoa
Vue Fullstack Graphql
Starter projects for fullstack applications based on Vue.js & GraphQL.
Stars: ✭ 352 (-6.38%)
Mutual labels:  instagram
Stprivilegedtask
An NSTask-like wrapper around the macOS Security Framework's AEWP function to run shell commands with root privileges in Objective-C / Cocoa.
Stars: ✭ 335 (-10.9%)
Mutual labels:  cocoa
Oauth
🔗 OAuth 2.0 implementation for various providers in one place.
Stars: ✭ 336 (-10.64%)
Mutual labels:  instagram
Insomniac
Instagram bot for automated Instagram interaction using Android device via ADB
Stars: ✭ 324 (-13.83%)
Mutual labels:  instagram

Swift Version twitter: @dylan36032

SegmentedProgressBar

A simple little control that animates segments like Snapchat or Instagram Stories.

Screenshot

Requirements

  • iOS 8.0+
  • Xcode 8

Installation

Drag and drop SegmentedProgressBar.swift into your project. That's it.

Usage

let spb = SegmentedProgressBar(numberOfSegments: 3, duration: 5)
spb.frame = CGRect(x: 15, y: 15, width: view.frame.width - 30, height: 4)
view.addSubview(spb)

spb.startAnimation()

Additional Stuff

Delegate:

spb.delegate = self // has to conform to SegmentedProgressBarDelegate

func segmentedProgressBarChangedIndex(index: Int) {
}

func segmentedProgressBarFinished() {
}

Styling:

spb.topColor = UIColor.white
spb.bottomColor = UIColor.white.withAlphaComponent(0.25)
spb.padding = 2

Pausing / Resuming

spb.isPaused = true
spb.isPaused = false

Skip / Rewind

spb.skip()
spb.rewind()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].