react-native-sheetmenu

Library for speedy implementation bottom menu with platform specific design

Usage no npm install needed!

<script type="module">
  import reactNativeSheetmenu from 'https://cdn.skypack.dev/react-native-sheetmenu';
</script>

README

react-native-sheetmenu

Fully native implementation of actions menu for iOS and Android following by system design and guidelines.

Install

yarn add react-native-sheetmenu

Usage

import SheetMenu from 'react-native-sheetmenu'

SheetMenu.show({
  title: "Hello from React Native",
  actions: [{ 
    title: "Menu item title",
    onPress: () => console.log("Pressed on me!"),
  }]
})

Roadmap

If you need some custom features, please open issue with enhancement description.