Pull request are welcomed. Please follow the Airbnb style guide Airbnb JavaScript
yarn add react-native-toolbar-component
npm install --save react-native-toolbar-component
import { Text } from 'react-native';
import ToolbarComponent from 'react-native-toolbar-component';
<ToolbarComponent
leftItem={{
title: 'Left',
layout: 'title',
onPress: () => {
console.log('pressed');
},
}}
righttem={{
title: 'Right',
layout: 'title',
onPress: () => {
console.log('pressed');
},
}}
>
<Text>
Title
</Text>
</ToolbarComponent>