Benchmarks
Tamagui compares well to the fastest libraries at runtime, and the compiler further optimizes your styled components, flattening them down and hoisting objects out of your rendering loop (and extracting CSS on the web).
With the compiler on Tamagui will output near optimal React code despite giving many nice shorthand style props. It has a higher impact on web, but with initial support for flattening more dynamic styled components now landed, Tamagui does flatten a very high % of your code on all platforms. We look forward to updating our benchmarks as we expect we've improved in a number of areas.
It's important to note that benchmarks never show a complete picture and that these benchmarks are not being actively updated as of early 2023. Our plan is to build out a better benchmarking setup to update this page.
React Native
In this benchmark Tamagui is within 10% of the speed of vanilla React Native, even when using nearly all of Tamagui's features. We render list of 28 items with a few sections, text and images. Average of 5 runs on a Apple M2 Air:
Tamagui
108%
React Native
106%
NativeBase
247%
Running Tamagui without the compiler averages 125ms
or ~12% slower. Note that the compiler is much more effective on the web as it turns many more props into CSS and both bundle size and render performance are more important.
Web
We forked and ran a few more benchmarks for the web.
Legend: RNW = react-native-web, SC = styled-components
Simple component
Timing rendering a simple custom component.
Tamagui
0.018%
RNW
0.057%
Dripsy
0.042%
NativeBase
0.67%
Stitches
0.023%
Emotion
0.041%
Updating variants
Changing variants is fast at runtime, and even faster when compiled:
Tamagui
0.02%
RNW
0.063%
Dripsy
0.108%
NativeBase
0.73%
Stitches
0.037%
Emotion
0.069%
SC
0.081%
Since styled-components and Emotion don't offer a first-class variant API, this was done via prop interpolation.
Updating inline styles
Tamagui has a big advantage for inline styles, it's the only library to compile them and flatten the tree.
Tamagui
0.025%
RNW
0.06%
Dripsy
0.266%
NativeBase
0.8%
Stitches
0.027%
Emotion
0.047%
Fully dynamic styles
These benchmarks don't benefit from the compiler. The React Native API surface is much more feature-rich than DOM.
Tamagui
31%
Dripsy
57.5%
Stitches
14.5%
Emotion
49.01%
- NativeBase - couldn't get running
Note: This test was taken from the styled-components benchmarks .
Mounting deep tree
In this test, we mount a tree with many nested nodes.
Tamagui
18.61%
Dripsy
44.43%
Stitches
8.32%
Emotion
42.49%
SC
51.4%
- SC - Styled Components
- NativeBase - couldn't get running
Note: This test was taken from the styled-components benchmarks .