@archzos/ui-native
v1.0.0
Published
Archzos React Native component library
Maintainers
Readme
@archzos/ui-native
React Native component library for the Archzos design system.
Installation
npm install @archzos/ui-native @archzos/tokens
# or
yarn add @archzos/ui-native @archzos/tokensUsage
import { Button } from '@archzos/ui-native';
import { colors, spacing } from '@archzos/tokens';
function App() {
return (
<View style={{ padding: spacing.lg }}>
<Button
variant="primary"
size="lg"
onPress={() => console.log('Pressed!')}
>
Click Me
</Button>
</View>
);
}Components
Button- Native button with variants and sizes- More components coming soon...
Platform Optimizations
- iOS: 44pt minimum touch targets
- Android: 48dp minimum touch targets
- Platform-specific shadows
- Native animations via react-native-reanimated
License
MIT © archzos
