All Projects → ezefranca → the-missing-apple-watch-loader

ezefranca / the-missing-apple-watch-loader

Licence: MIT License
The missing apple watch loader ⌚️

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to the-missing-apple-watch-loader

react-intl-loader
Async react-intl locale data loader for webpack
Stars: ✭ 46 (+91.67%)
Mutual labels:  loader
architectury-api
An intermediary api aimed at easing development of multiplatform mods.
Stars: ✭ 139 (+479.17%)
Mutual labels:  loader
es2postgres
ElasticSearch to PostgreSQL loader
Stars: ✭ 18 (-25%)
Mutual labels:  loader
MotionCollector
iOS app for collecting data from internal motion sensors (gyroscope, magnetometer, accelerometer) of iPhone and Apple Watch.
Stars: ✭ 55 (+129.17%)
Mutual labels:  apple-watch
faker
A kotlin extension to load images asynchronously on android
Stars: ✭ 58 (+141.67%)
Mutual labels:  loader
CsharpVoxReader
A generic C# reader for MagicaVoxel's vox file format
Stars: ✭ 15 (-37.5%)
Mutual labels:  loader
BDLocalizedDevicesModels
Apple devices model names localized.
Stars: ✭ 23 (-4.17%)
Mutual labels:  apple-watch
webpack-image-placeholder-loader
Generate a solid color image as placeholder
Stars: ✭ 24 (+0%)
Mutual labels:  loader
LoadersPack-Android
Android LoadersPack - a replacement of default android material progressbar with different loaders
Stars: ✭ 119 (+395.83%)
Mutual labels:  loader
dts-css-modules-loader
A small Webpack loader to generate typings for your CSS-Modules
Stars: ✭ 44 (+83.33%)
Mutual labels:  loader
rprogress
React ajax loader progress bar with clear API
Stars: ✭ 12 (-50%)
Mutual labels:  loader
nunjucks-loader
Webpack loader for Nunjucks templates
Stars: ✭ 20 (-16.67%)
Mutual labels:  loader
vue-visual
Vue 2 image and video loader supporting lazy loading, background videos, fixed aspect ratios, low rez poster images, transitions, loaders, slotted content and more.
Stars: ✭ 56 (+133.33%)
Mutual labels:  loader
KVSpinnerView
KVSpinnerView is highly customizable progress HUD
Stars: ✭ 37 (+54.17%)
Mutual labels:  loader
python-yamlordereddictloader
(DEPRECATED) YAML loader and dumper for PyYAML allowing to keep keys order.
Stars: ✭ 25 (+4.17%)
Mutual labels:  loader
favicon-canvas-loader
Create and display a circular loading <canvas> animation as a webpage favicon.
Stars: ✭ 83 (+245.83%)
Mutual labels:  loader
rollup-loader
Rollup does what it can do, and let Webpack finish the job.
Stars: ✭ 86 (+258.33%)
Mutual labels:  loader
react-bootstrap-button-loader
React ButtonLoader with Bootstrap flavor
Stars: ✭ 25 (+4.17%)
Mutual labels:  loader
dynamic-import-assets
Dynamic Imports for JavaScript and CSS.
Stars: ✭ 20 (-16.67%)
Mutual labels:  loader
phaser-webpack-loader
Asset loader for Phaser + Webpack.
Stars: ✭ 85 (+254.17%)
Mutual labels:  loader

The missing apple watch loader

🐧 How to use?

Put a centralized WKInterfaceImage in your storyboard, create the @IBOutlet copy the images to the correct bundle and implement the start and stop loader.

Example

    @IBOutlet var loader: WKInterfaceImage!
    
    func showLoader() {
        loader.setImageNamed("loader")
        loader.startAnimatingWithImages(in: NSRange(location: 1,
                                                    length: 8), duration: 0.8, repeatCount: -1)
    }
    
    func stopLoader() {
        self.loader.stopAnimating()
    }
    

The image name loader :

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].