react-native-styled-list
TypeScript icon, indicating that this package has built-in type declarations

0.1.4 • Public • Published

react-native-styled-list

react native styled list

Installation

# npm
npm install react-native-styled-list

# yarn
yarn add react-native-styled-list

Usage

BulletedList

import React from "react";
import { View, Text } from "react-native";
import { BulletedList } from "react-native-styled-list";

export default function App() {
  return (
    <View>
      <BulletedList>
        <Text>apple</Text>
        <Text>banana</Text>
        <Text>orange</Text>
      </BulletedList>
    </View>
  );
}

NumberedList

import React from "react";
import { View, Text } from "react-native";
import { NumberedList } from "react-native-styled-list";

export default function App() {
  return (
    <View>
      <NumberedList>
        <Text>apple</Text>
        <Text>banana</Text>
        <Text>orange</Text>
      </NumberedList>
    </View>
  );
}

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library

Package Sidebar

Install

npm i react-native-styled-list

Weekly Downloads

2

Version

0.1.4

License

MIT

Unpacked Size

22.8 kB

Total Files

17

Last publish

Collaborators

  • tomheaton