<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/you-may-not-need-reanimated-measure-1o4ctjwih" -->

---
title: You May Not Need Reanimated Measure | daily.dev
description: A developer walks through building loading skeletons in React Native from scratch, encountering issues with shimmer animation synchronization across multiple...
canonical: https://daily.dev/posts/you-may-not-need-reanimated-measure-1o4ctjwih
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: You May Not Need Reanimated Measure | daily.dev
og:description: A developer walks through building loading skeletons in React Native from scratch, encountering issues with shimmer animation synchronization across multiple...
og:url: https://daily.dev/posts/you-may-not-need-reanimated-measure-1o4ctjwih
og:image: https://api.daily.dev/og/posts/1O4CTjWIH.png
og:image:alt: You May Not Need Reanimated Measure
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# You May Not Need Reanimated Measure

**[Software Mansion](https://daily.dev/sources/swmansion)** · 5 min read · 0 upvotes · 0 comments

## Summary

A developer walks through building loading skeletons in React Native from scratch, encountering issues with shimmer animation synchronization across multiple elements. The initial solution using Reanimated's `measure` inside `useAnimatedStyle` caused warnings and ran on every frame. The fix was switching to React Native's built-in `measure` method inside `useLayoutEffect`, which runs once, avoids null-check warnings, and is more CPU-efficient. As a bonus, the author shows how this refactor also enabled switching to Reanimated's new CSS Animations API.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://swmansion.com/blog/you-may-not-need-reanimated-measure-5b9c11d27ba4>

## Similar posts on daily.dev

- [The real cost of React Native animations: Benchmarking every approach](https://daily.dev/posts/the-real-cost-of-react-native-animations-benchmarking-every-approach-ervf5p50g) · Expo Blog · 0 upvotes · 0 comments
- [How to Create Fluid Animations with React Native Reanimated v4](https://daily.dev/posts/how-to-create-fluid-animations-with-react-native-reanimated-v4-eydbvxf9p) · freeCodeCamp · 4 upvotes · 0 comments

---

Tags: [#typescript](https://daily.dev/tags/typescript), [#react-native](https://daily.dev/tags/react-native)

[View this post on daily.dev](https://daily.dev/posts/you-may-not-need-reanimated-measure-1o4ctjwih)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"You May Not Need Reanimated Measure","url":"https://daily.dev/posts/you-may-not-need-reanimated-measure-1o4ctjwih","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/you-may-not-need-reanimated-measure-1o4ctjwih"},"datePublished":"2026-08-02T07:15:51.255Z","dateModified":"2026-08-02T07:40:29.907Z","description":"A developer walks through building loading skeletons in React Native from scratch, encountering issues with shimmer animation synchronization across multiple...","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/27de56dd5fa9a529fbe18d476997a10d?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/27de56dd5fa9a529fbe18d476997a10d?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"Software Mansion","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"Software Mansion","logo":"https://media.daily.dev/image/upload/s--sOx0vaVZ--/f_auto,q_auto/v1785654908/logos/swmansion?_a=BAMAMicg0","url":"https://daily.dev/sources/swmansion"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/you-may-not-need-reanimated-measure-1o4ctjwih","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"typescript,react-native","timeRequired":"PT5M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Software Mansion","item":"https://daily.dev/sources/swmansion"},{"@type":"ListItem","position":3,"name":"You May Not Need Reanimated Measure"}]}
```

