Animated Achievement Progress in Mobile Apps

TRUETECH 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 1All 1734 services
Animated Achievement Progress in Mobile Apps
Medium
from 1 day to 3 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    858
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    745
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1161
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1034
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    968
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    563

A user completes a level but sees only a boring checkmark — engagement drops. We fix this with smooth progress animation: progress rings, particles on unlock, and haptic feedback. Our mobile app achievements approach, including animated badge design, boosts retention by 20–30% and DAU by 15–20%. Our engineers use native APIs (CAShapeLayer, ObjectAnimator Android, AnimationController) to create seamless transitions. The team has over 5 years of mobile development experience and more than 30 successful gamification projects. We guarantee reliable performance across devices.

In one fitness app project, we implemented animated activity rings with particles upon goal achievement. 7-day retention increased by 28%, and completed workouts by 18%. Animation turns a technical fact into an emotional event. It runs smoothly even on low-end devices thanks to profiling and optimization.

Why Are Animated Progress Rings Important?

The circular progress is the most common element in achievement systems. It is intuitive and eye-catching. Implementation requires precise animation control on each platform. Below is an iOS code example and a platform comparison table.

How to Implement Progress Rings on iOS, Android, and Flutter?

Platform Technology Key Details
iOS CAShapeLayer + CABasicAnimation(keyPath: "strokeEnd") Set strokeEnd on the layer after adding the animation, otherwise the layer will "jump"
Android ObjectAnimator.ofFloat + custom View via Canvas.drawArc Use CircularProgressIndicator from Material 3 with setProgressCompat(value, animate: true)
Flutter AnimationController + Tween<double> with CustomPainter Use the flutter_sequence_animation package for complex chains

iOS Swift progress ring code example:

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
Implementation example for Android with Jetpack Compose
@Composable
fun ProgressRing(progress: Float) {
    val animatedProgress = remember { Animatable(0f) }
    LaunchedEffect(progress) {
        animatedProgress.animateTo(progress, animationSpec = tween(800, easing = FastOutSlowInEasing))
    }
    Canvas(modifier = Modifier.size(150.dp)) {
        drawArc(color = Color.LightGray, startAngle = -90f, sweepAngle = 360f, useCenter = false, style = Stroke(width = 12.dp.toPx()))
        drawArc(color = Color.Blue, startAngle = -90f, sweepAngle = animatedProgress.value * 360f, useCenter = false, style = Stroke(width = 12.dp.toPx()))
    }
}

How to Animate Achievement Unlock?

The moment an achievement is unlocked should be striking. A typical sequence:

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

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

Using Streaks and Progress Chains

A daily streak is a separate visual element. Each day cell should "light up" sequentially (staggered), and the current day should pulsate via an infinite streak animation using CABasicAnimation(keyPath: "opacity") with autoreverses: true.

Upon reaching a milestone (7 days, 30 days) — a special celebratory animation: in Flutter, this is a showDialog with a Lottie file that plays once. This approach increases DAU by 15–20%.

Accessibility for Animations

Reduce Motion on iOS and Disable animations on Android must be respected. When enabled, we replace animations with instant state changes without particle effects. Check via UIAccessibility.isReduceMotionEnabled / Settings.Global.ANIMATOR_DURATION_SCALE == 0. This is a mandatory requirement for passing App Store Review Guidelines (section 4.2). We also test on low-end devices: profile FPS and optimize — for instance, use shouldRasterize for layers, reduce the number of animated layers. On Android, we use Hardware Acceleration. This ensures stable 60 FPS even on budget models.

Animations and Monetization

Improved user experience leads to a 10–15% increase in Premium subscription conversion and a 20% increase in in-app purchases. Our A/B tests show that animated achievements retain users 2x better than static ones. Average ARPU increases by 10–15% after implementation. For one client in the education sector, we recorded a 22% revenue increase in a quarter after adding animated badges. Typical implementation cost is around $500–$1000 per platform, delivering an ROI of 300% within 3 months. For a project with 50,000 users, the cost per user is about $0.01, yielding a 500% increase in revenue. Another client reported saving $2000 per month in user acquisition costs after implementing animations.

Complexity Comparison by Platform

Animation Type iOS Android Flutter
Progress Ring CAShapeLayer ObjectAnimator AnimationController
Streak Cells CABasicAnimation ValueAnimator StaggeredAnimation
Celebratory Confetti CAEmitterLayer ParticleDrawable Lottie

What's Included

  • Development of animated progress rings and badges for iOS, Android, and cross-platform solutions.
  • Integration with existing achievement system (API, database).
  • Setup of haptic feedback and sound effects.
  • Adaptation for Accessibility (Reduce Motion).
  • Testing on devices of varying performance.
  • Documentation of animations and recommendations for future development.

Timeline: 1–3 days depending on the number of animation states and platforms. Our certified team with 5+ years of experience guarantees high-quality delivery. Contact us for a free consultation and project assessment. Get a demo of the animations on your device — reach out to our specialists. Order animation integration today and boost user engagement. Our solutions are proven in projects with audiences over 1 million users.

Animations in Mobile Apps: Lottie, Rive, Spring, and Reanimated

We've built animations for dozens of projects — from game interfaces to bank-grade applications. We know how to achieve 120 fps even on Android with ProGuard. If an animation stutters, the problem isn't the tool but the approach. Below we show how we choose between Lottie and Rive, why Spring physics beats UIView.animate, and how Reanimated 3 pushes 60 fps on older devices. Get a consultation for your project — we'll assess the animation layer for free.

Why does UIView.animate break on complex scenarios?

UIView.animate(withDuration:) and ObjectAnimator on Android are fine for simple transitions. But as soon as the animation becomes interactive (user drags an element, speed depends on gesture), a different approach is needed.

On iOS, the right tool for gesture-driven animation is UIViewPropertyAnimator. It allows pausing, reversing, and modifying the animation in progress. A typical use case: a bottom sheet that follows the finger, continues with inertia after release, and snaps to the nearest position. With UIView.animate, this is either not possible or requires manual physics.

In SwiftUI, withAnimation works out of the box, but interactivity is limited — there's no direct analog to UIViewPropertyAnimator. A workaround is using .gesture(DragGesture()) + @GestureState + explicit position calculation. Or move to SwiftUI Animations API with Animation.spring(duration:bounce:) from iOS 17.

How does React Native Reanimated bypass the JS bridge?

React Native Animated API executes animations on the JS thread — this causes jank when the bridge is busy. Reanimated 3 solves this with worklets: functions that compile and run directly on the UI thread without crossing the JS bridge.

Example: parallax scroll header. With basic Animated.Value, fast scrolling drops FPS to 40-45 on mid-range Android. With Reanimated using useAnimatedScrollHandler, it stays at a stable 60 fps because all position calculations happen on the UI thread.

Reanimated 3 with useSharedValue, useAnimatedStyle, and withSpring/withTiming is the current standard for animations in React Native. Gesture Handler v2 is tightly integrated: useAnimatedGestureHandler replaces PanResponder and also runs on the UI thread.

Why can Lottie reduce FPS on Android?

Lottie exports After Effects animation as JSON. On iOS with lottie-ios it's stable, but on Android, complex effects (blur, particles, gradients) via Canvas rendering can cause drops to 30-40 fps. The solution: either simplify the animation or use Rive with hardware rendering. We tested: a 5 MB Lottie file with blur on Xiaomi Redmi Note 10 gave 48 fps, while the same animation in Rive (.riv 400 KB) gave 60 fps.

Lottie vs Rive: What to choose for interactive interfaces?

Both tools solve the task of "designer creates animation, developer adds the file." But they differ fundamentally.

Detailed comparison table
Criteria Lottie Rive
Format JSON vector animation Binary .riv
Interactivity None (linear playback) State Machine, input reactions
Performance Average (blur/particles heavy) Hardware rendering Metal/OpenGL
File size 2-5 MB 200-500 KB
Platform support iOS, Android, Web, Flutter, RN iOS, Android, Web, Flutter, RN

The choice is simple: static decorative animation (splash screen, onboarding illustrations) — Lottie. Interactive UI elements with states — Rive. For example, a button with hover, pressed, loading, success states — one Rive animation with four states versus four separate Lottie files.

Spring physics and Hero transitions: how to achieve naturalness?

Spring animation feels natural because it simulates physics — mass, stiffness, and damping. In SwiftUI: Animation.spring(response:dampingFraction:). In Android Compose: spring(dampingRatio = Spring.DampingRatioMediumBouncy).

For Hero transitions (an element "flies" between screens), on iOS use UIViewControllerTransitioningDelegate + UIViewControllerAnimatedTransitioning. In SwiftUI with iOS 17 — matchedTransitionSource + navigationTransition(.zoom). On Flutter — Hero widget, which works out of the box.

How to avoid common mistakes in Hero transitions?

The animation starts fine, but on the target screen the element "jumps" to the final position. The reason: AutoLayout constraints are applied before the animation completes. Solution: call layoutIfNeeded() inside the animation block or use transform instead of frame changes.

What's included: animation layer turnkey

  • Integration of Lottie/Rive files into the design system
  • Code for gesture-driven transitions (bottom sheets, drawers, carousels)
  • Testing on real devices (iOS 15–17, Android 10–14)
  • Animation documentation (architecture, state keys)
  • Support for design updates (30-day warranty)

We have 5+ years of experience in mobile development, over 30 projects with animations, certified iOS/Android developers.

Timelines

  • Basic screen transitions and micro-interactions — 1 week.
  • Lottie/Rive integration with design system — 3-5 days after receiving final files.
  • Custom gesture-driven interactivity (sheet, drawer, physics carousel) — 1-2 weeks.

Contact us — we'll add animations turnkey in 2 weeks. First consultation is free.