All Projects → Yalantis → Fittrack

Yalantis / Fittrack

Licence: mit
Concept of a fitness app.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Fittrack

Guillotinemenu
Our Guillotine Menu Transitioning Animation implemented in Swift reminds a bit of a notorious killing machine.
Stars: ✭ 2,908 (+1662.42%)
Mutual labels:  cocoapods, yalantis
Segmentio
Animated top/bottom segmented control written in Swift.
Stars: ✭ 2,310 (+1300%)
Mutual labels:  cocoapods, yalantis
Displayswitcher
Custom transition between two collection view layouts
Stars: ✭ 2,253 (+1265.45%)
Mutual labels:  cocoapods, yalantis
Pulltorefresh
This component implements pure pull-to-refresh logic and you can use it for developing your own pull-to-refresh animations
Stars: ✭ 1,150 (+596.97%)
Mutual labels:  cocoapods, yalantis
Forceblur
ForceBlur Animation for iOS Messaging Apps
Stars: ✭ 666 (+303.64%)
Mutual labels:  cocoapods, yalantis
Yalfield
Custom Field component with validation for creating easier form-like UI from interface builder.
Stars: ✭ 476 (+188.48%)
Mutual labels:  cocoapods, yalantis
Pull To Refresh.rentals Ios
This project aims to provide a simple and customizable pull to refresh implementation. Made in Yalantis
Stars: ✭ 2,171 (+1215.76%)
Mutual labels:  cocoapods, yalantis
Koloda
KolodaView is a class designed to simplify the implementation of Tinder like cards on iOS.
Stars: ✭ 4,998 (+2929.09%)
Mutual labels:  cocoapods, yalantis
Preloader.ophiuchus
Custom Label to apply animations on whole text or letters.
Stars: ✭ 880 (+433.33%)
Mutual labels:  cocoapods, yalantis
Colormatchtabs
This is a Review posting app that let user find interesting places near them
Stars: ✭ 1,341 (+712.73%)
Mutual labels:  cocoapods, yalantis
Trilabelview
A triangle shaped corner label view for iOS written in Swift.
Stars: ✭ 158 (-4.24%)
Mutual labels:  cocoapods
Lcbannerview
A very popular and highly customized banner view! Infinite loop support!
Stars: ✭ 158 (-4.24%)
Mutual labels:  cocoapods
Tosmbclient
An Objective-C binding around the libDSM SMB client library.
Stars: ✭ 162 (-1.82%)
Mutual labels:  cocoapods
Forecastio
A Swift library for the Forecast.io Dark Sky API
Stars: ✭ 164 (-0.61%)
Mutual labels:  cocoapods
Cdmarkdownkit
An extensive Swift framework providing simple and customizable markdown parsing.
Stars: ✭ 158 (-4.24%)
Mutual labels:  cocoapods
Swiftaudio
Audio player for iOS
Stars: ✭ 160 (-3.03%)
Mutual labels:  cocoapods
Toroundedtableview
A subclass of UITableView that styles it like Settings.app on iPad
Stars: ✭ 157 (-4.85%)
Mutual labels:  cocoapods
Accordionswift
The best way of implement an accordion menu using an UITableView in Swift
Stars: ✭ 156 (-5.45%)
Mutual labels:  cocoapods
Apesuperhud
A simple way to display a HUD with a message or progress information in your application.
Stars: ✭ 156 (-5.45%)
Mutual labels:  cocoapods
Thememanager
ThemeManager is a lightweight library for application to switching themes. support more attributes and theme extensions. more easy and convenient to use.
Stars: ✭ 165 (+0%)
Mutual labels:  cocoapods

FitTrack

Platform License

Concept of a fitness app.

Yalantis

Check this project on dribbble.

Requirements

  • iOS 9.0+
  • Xcode 7
  • Swift 2

Installing with CocoaPods

use_frameworks!
pod FitTrack, '~> 0.1.0

Usage

At first, import FitTrack:

import FitTrack

Then create animation view, for example, as outlet:

@IBOutlet private weak var animationView: AnimationView!

Then create collection of activities and configure animation view (pass these activities to animation view):

let activities = ActivityDataProvider.generateActivities()
animationView.configureSubviews(activities.count, activities: activities)

Сreation of activity is as follows:

// bike activity
let bikeLabelConfigurator = LabelConfigurator(textColor: UIColor.bikeActivityColor(), titleFontName: "SFUIText-Light", titleFontSize: 24, currentProgressFontName: "SFUIText-Bold", currentProgressFontSize: 48, goalFontName: "SFUIText-Light", goalLabelFontSize: 14)
let bikeActivityResource = ActivityResource(normalActivityButtonImage: UIImage(named: "bike_normal")!, selectedActivityButtonImage: UIImage(named: "bike_active")!, gradientImage: UIImage(named: "grad_green")!, labelConfigurator: bikeLabelConfigurator)
let bikeActivity = Activity(title: "Miles", goal: 2.5, currentProgress: 2, activityResource: bikeActivityResource)
activities.append(bikeActivity)

After configure animation view need to start animation:

animationView.performAnimation()

For more information, please, see example.

Have fun! :)

Let us know!

We’d be really happy if you sent us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regarding the animation.

P.S. We’re going to publish more awesomeness wrapped in code and a tutorial on how to make UI for iOS (Android) better than better. Stay tuned!

License

The MIT License (MIT)

Copyright © 2017 Yalantis

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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