feat(ux): animated count-up KPIs + staggered dashboard entrance#132
Merged
Conversation
First slice of the "top-tier motion" pass. - `useCountUp` (RAF, easeOutCubic) + `AnimatedNumber` — dashboard KPI headlines now count up to their value instead of snapping. RAF rather than reanimated so a few cheap number re-renders behave identically on web and native with no worklet/New-Arch caveats; integer targets round per-frame so counts stay clean. - Dashboard widget rows now ease in with a gentle staggered `FadeInDown` (reanimated) — confirmed rendering on web. tsc + lint clean, full suite 1337 passing. Verified in the browser: the Task Overview KPIs count up (8 / 0 / 0 / 13%) and the grid staggers in. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Top-tier motion — slice 1
First piece of the motion/feel upgrade.
useCountUp+AnimatedNumber— dashboard KPI headlines count up to their value (easeOutCubic) instead of snapping. RAF-driven (not reanimated) on purpose: a few cheap number re-renders behave identically on web + native with no worklet / New-Architecture caveats; integer targets round per-frame so counts stay clean ("8", not "7.32").FadeInDown(reanimated), confirmed rendering on web (no console errors; caught mid-fade).Verified
Browser (375dp, dark): the Task Overview KPIs animate up to 8 / 0 / 0 / 13% and the grid staggers in. tsc + lint clean, full suite 1337 passing.
Next slices (separate PRs): list/home entrance + spring press micro-interactions, collapsing large-title headers, then the perceived-speed / visual-craft / power-user tracks.
🤖 Generated with Claude Code