react-native-week-schedule-1
Version:
44 lines (29 loc) • 1.01 kB
Markdown
# react-native-week-schedule-1
Simple and customizable schedule table for react native
## Installation
```sh
npm install react-native-week-schedule-1
```
```sh
yarn add react-native-week-schedule-1
```
## Usage
```js
import { Schedule } from "react-native-week-schedule-1";
// ...
<Schedule
data={[
{ id: '1', date: '2025-04-16T08:00:00.604Z', duration: 120, title: 'walk', color: 'green' },
{ id: '1.5', date: '2025-04-16T08:00:00.604Z', duration: 120, title: 'call mom', color: 'orange' },
{ id: '2', date: '2025-04-16T10:00:00.604Z', duration: 60, title: 'breakfast', color: 'yellow' },
{ uid: '4', date: '2025-04-16T11:00:00.604Z', duration: 360, title: 'work', color: 'red' },
]}
/>
```
<!--
## Contributing
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. -->
## License
MIT
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)