ReactNative is a great framework for building mobile applications. It is a great choice for developers who want to build cross-platform applications. However, many components are not really native. They are perfect for customizing the UI, but they are not perfect for app which as to be native.
I didn't find any library that allows me to use a native list components in ReactNative, so I decided to create one.
You need to have an Expo project. ReactNative is not supported yet.
To install the package, run the following command:
npm install rn-native-listview
import { NativeListView } from 'rn-native-listview';
const App = () => {
return (
<NativeListView>
<Text>Hello World</Text>
</NativeListView>
);
};
export default App;
The style of the list.
Available values: plain
, grouped
, insetGrouped
This project is licensed under the MIT License - see the LICENSE file for details.