React Native customisable clocks built with @shopify/react-native-skia
yarn add react-native-clocks
yarn add @shopify/react-native-skia
Analog:
import { Clock } from 'react-native-clocks';
// ...
export default function App() {
return <Clock />;
}
Digital:
import { DigitalClock } from 'react-native-clocks';
// ...
export default function App() {
return <DigitalClock />;
}
Take a look to the example folder where there are different examples of the clock's theming usage .
This library is still under construction, more customisable elements for the clocks are coming soon.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library