Animated achievement progress in mobile app

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Animated achievement progress in mobile app
Medium
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Animated Achievement Progress Implementation in Mobile Apps

Achievement system without animation is just a checkbox list. When user unlocks icon and sees smooth progress ring fill, particle burst, and badge appear—this becomes memorable. Right animation transforms technical fact into emotional event.

Progress Ring with Animation

Circular progress is most common achievement element.

On iOS, use CAShapeLayer with strokeEnd animation:

let progressLayer = CAShapeLayer()
progressLayer.path = UIBezierPath(arcCenter: center, radius: radius,
    startAngle: -(.pi / 2), endAngle: 1.5 * .pi, clockwise: true).cgPath
progressLayer.strokeEnd = 0

let animation = CABasicAnimation(keyPath: "strokeEnd")
animation.fromValue = previousProgress  // e.g., 0.6
animation.toValue = newProgress         // e.g., 0.85
animation.duration = 0.8
animation.timingFunction = CAMediaTimingFunction(name: .easeOut)
progressLayer.add(animation, forKey: "progressAnimation")
progressLayer.strokeEnd = newProgress

Important: set strokeEnd on layer AFTER adding animation—otherwise layer "jumps" to final state immediately.

On Android, use ObjectAnimator.ofFloat(progressView, "progress", from, to) with custom View drawing arc via Canvas.drawArc, or CircularProgressIndicator from Material 3 with setProgressCompat(value, animate: true).

Unlock Animation

Moment achievement opens should be vivid. Typical sequence:

  1. Shake/pulse badge: CAKeyframeAnimation on transform.scale with values [1, 1.15, 0.95, 1.05, 1.0]—imitates "click"
  2. Reveal animation: badge appears via circular reveal or scale 0→1 with UISpringTimingParameters(dampingRatio: 0.6)
  3. Particles: CAEmitterLayer with short burst (birthRate = 200, lifetime = 0.8)—confetti or stars
  4. Haptic: UINotificationFeedbackGenerator(.success) synced with peak animation

In Flutter, same sequence via AnimationController with multiple Tween and SequenceAnimation from flutter_sequence_animation package, or chain via Future.delayed + AnimationController.forward().

Streaks and Progress Chains

Daily streak is separate visual element. Each day-cell should "light up" sequentially (stagger), and current day—pulse via infinite CABasicAnimation(keyPath: "opacity") with autoreverses: true.

On milestone reach (7 days, 30 days)—special celebration animation: in Flutter this is showDialog with Lottie inside, playing once.

Accessibility

Reduce Motion on iOS and Disable animations on Android must be respected. With these enabled, replace animations with instant state change without particles. Check via UIAccessibility.isReduceMotionEnabled / Settings.Global.ANIMATOR_DURATION_SCALE == 0.

Timeline: 1–3 days depending on animation state count and platforms.