Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)