Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomheaton/react-native-styled-list
a styled list for react native
https://github.com/tomheaton/react-native-styled-list
react-native typescript
Last synced: about 12 hours ago
JSON representation
a styled list for react native
- Host: GitHub
- URL: https://github.com/tomheaton/react-native-styled-list
- Owner: tomheaton
- License: mit
- Created: 2022-08-15T19:48:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-27T10:02:35.000Z (10 months ago)
- Last Synced: 2024-11-08T11:05:40.150Z (12 days ago)
- Topics: react-native, typescript
- Language: TypeScript
- Homepage: https://npmjs.com/package/react-native-styled-list
- Size: 1.27 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# react-native-styled-list
react native styled list
## Installation
```sh
# npm
npm install react-native-styled-list# yarn
yarn add react-native-styled-list
```## Usage
### `BulletedList`
```jsx
import React from "react";
import { View, Text } from "react-native";
import { BulletedList } from "react-native-styled-list";export default function App() {
return (
apple
banana
orange
);
}
```### `NumberedList`
```jsx
import React from "react";
import { View, Text } from "react-native";
import { NumberedList } from "react-native-styled-list";export default function App() {
return (
apple
banana
orange
);
}
```## 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)