kmp-ui-bridge
Installation
SKILL.md
KMP UI Bridge
This skill provides a translation layer between web and native mobile UI development.
UI Mapping Guide
Layouts
| Web (Tailwind) | Mobile (Compose) |
|---|---|
flex flex-col |
Column |
flex flex-row |
Row |
grid |
LazyVerticalGrid or Box |
p-4 |
Modifier.padding(16.dp) |
gap-4 |
Arrangement.spacedBy(16.dp) |
items-center |
Alignment.CenterVertically |
justify-between |
Arrangement.SpaceBetween |