iOS-style components that follow Apple's Human Interface Guidelines. Build beautiful native-looking interfaces with WebF.
Cupertino color system and iconography
Navigation components for app structure
Modal overlays and contextual menus
Structured lists and form components
Text input and search components
Date and time selection components
Interactive buttons and input controls
Install and usage examples for React and Vue.
1npm install @openwebf/react-cupertino-ui1import { FlutterCupertinoButton } from '@openwebf/react-cupertino-ui';
2
3export function ButtonsExample() {
4 return (
5 <FlutterCupertinoButton variant="filled" onClick={() => console.log('Clicked')}>
6 Continue
7 </FlutterCupertinoButton>
8 );
9}1npm install @openwebf/vue-cupertino-ui1<template>
2 <flutter-cupertino-button variant="filled" @click="() => console.log('Clicked')">
3 Continue
4 </flutter-cupertino-button>
5</template>