Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →`@expo/ui/jetpack-compose` package lets you use Jetpack Compose Views and modifiers in your app.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -19% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -58% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -67% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -57% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -67% | 0% |
> The instructions in this skill apply to SDK 55 only. For other SDK versions, refer to the Expo UI Jetpack Compose docs for that version for the most accurate information.
bashnpx expo install @expo/ui
A native rebuild is required after installation (npx expo run:android).
@expo/ui/jetpack-compose, modifiers from @expo/ui/jetpack-compose/modifiers.Host. Example:jsximport { Host, Column, Button, Text } from "@expo/ui/jetpack-compose"; import { fillMaxWidth, paddingAll } from "@expo/ui/jetpack-compose/modifiers"; <Host matchContents> <Column verticalArrangement={{ spacedBy: 8 }} modifiers={[fillMaxWidth(), paddingAll(16)]}> <Text style={{ typography: "titleLarge" }}>Hello</Text> <Button onPress={() => alert("Pressed!")}>Press me</Button> </Column> </Host>;
Other measured skills in the registry, with their headline benchmark lift.