All Projects → WrathChaos → react-native-permissions-modal

WrathChaos / react-native-permissions-modal

Licence: MIT License
Awesome & Fully Customizable Permissions Modal for React Native

Programming Languages

javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language
java
68154 projects - #9 most used programming language
ruby
36898 projects - #4 most used programming language
Starlark
911 projects

Projects that are alternatives of or similar to react-native-permissions-modal

react-native-imaged-carousel-card
Fully customizable & Lovely Imaged Carousel Card for React Native
Stars: ✭ 70 (+169.23%)
Mutual labels:  front-end, apple, software, freakycoder, kuray
react-native-beautiful-timeline
Fully customizable, beautifully designed Timeline for React Native.
Stars: ✭ 111 (+326.92%)
Mutual labels:  apple, freakycoder, kuray
react-native-header-search-bar
Fully customizable header search bar for React Native
Stars: ✭ 101 (+288.46%)
Mutual labels:  front-end, apple, freakycoder
react-native-bounceable
Animate and bounce any component with RNBounceable for React Native
Stars: ✭ 26 (+0%)
Mutual labels:  front-end, apple, freakycoder
Mac Setup
🛠️ Front end web development setup for macOS.
Stars: ✭ 265 (+919.23%)
Mutual labels:  front-end, apple
Awesome Mac
 Now we have become very big, Different from the original idea. Collect premium software in various categories.
Stars: ✭ 46,674 (+179415.38%)
Mutual labels:  apple, software
react-native-input-bar
Fully customizable, beautifully designed Input Bar for React Native
Stars: ✭ 32 (+23.08%)
Mutual labels:  apple, freakycoder
Forum
Fórum da BrazilJS
Stars: ✭ 123 (+373.08%)
Mutual labels:  front-end, software
Blog
个人知识集合整理
Stars: ✭ 34 (+30.77%)
Mutual labels:  front-end, software
react-native-redux-boilerplate
React Native Redux Boiler Plate
Stars: ✭ 38 (+46.15%)
Mutual labels:  front-end, freakycoder
react-native-text-area
Simple and easy to use TextArea for React Native.
Stars: ✭ 20 (-23.08%)
Mutual labels:  software, freakycoder
react-native-animated-radio-button
Fully customizable animated radio button for React Native
Stars: ✭ 25 (-3.85%)
Mutual labels:  front-end, freakycoder
react-native-bottom-bar
Fully customizable BottomBar with unique design shape for React Native.
Stars: ✭ 74 (+184.62%)
Mutual labels:  freakycoder, kuray
react-native-single-select
Customizable & Easy to Use Single Select Library for React Native
Stars: ✭ 74 (+184.62%)
Mutual labels:  front-end, apple
awesome-starless
A curated list of awesome repositories with few stargazers but has a huge users.
Stars: ✭ 38 (+46.15%)
Mutual labels:  front-end
BFEdevSolutions
Solutions to problems that I solved on bigfrontend.dev
Stars: ✭ 21 (-19.23%)
Mutual labels:  front-end
single-spa.js.org
single-spa.js.org/
Stars: ✭ 84 (+223.08%)
Mutual labels:  front-end
guiaCSS
Um guia CSS para iniciantes e curiosos!
Stars: ✭ 39 (+50%)
Mutual labels:  front-end
Wells
A lightweight diagnostics report submission system
Stars: ✭ 26 (+0%)
Mutual labels:  apple
TermiNetwork
🌏 A zero-dependency networking solution for building modern and secure iOS, watchOS, macOS and tvOS applications.
Stars: ✭ 80 (+207.69%)
Mutual labels:  apple

React Native Permissions Modal

Battle Tested ✅

Awesome & Fully Customizable Permissions Modal for React Native

npm version npm Platform - Android and iOS License: MIT styled with prettier

React Native Permissions Modal React Native Permissions Modal

Installation

Add the dependency:

npm i react-native-permissions-modal

Peer Dependencies

IMPORTANT! You need install them
"react": ">= 16.x.x",
"react-native": ">= 0.55.x",
"react-native-gesture-handler": ">= 1.6.0",
"react-native-material-ripple": ">= 0.9.1",
"react-native-modalize": ">= 1.3.7"

Usage

Import

import {
  PermissionModal,
  PermissionItem
} from "react-native-permissions-modal";

Usage

<PermissionModal
  panGestureEnabled={false}
  closeOnOverlayTap={false}
  ref={ref => (this.permModal = ref)}
>
  <PermissionItem />
  <PermissionItem
    title="Camera"
    iconStatusColor="red"
    subtitle="To access camera features"
    source={require("./assets/photo.png")}
    onPress={() => alert("hello")}
  />
  <PermissionItem
    title="Internet"
    source={require("./assets/wifi.png")}
    subtitle="To access the services, give us the permission"
  />
</PermissionModal>

Open Modal

this.permModal.openModal();

Close Modal

this.permModal.closeModal();

Configuration - Props

PermissionModal

Property Type Default Description
title string Permissions change the title of the modal
subtitle string default change the subtitle of the modal
openModal function default to open the modal
closeModal function default to close the modal
gradient boolean false make the button with a gradient background and a shadow
width number 150 change the button's width

PermissionItem

Property Type Default Description
title string Location change the title of the permission item
subtitle string default change the subtitle of the permission item
source image default-image change the image source of the permission item
iconComponent component default set your own component instead of imaged icon
ImageComponent component Image set your own component for Image such as FastImage
iconContainerBackgroundColor color #f7f7f7 change icon's background color
titleTextStyle style default change title's text style
subtitleTextStyle style default change subtitle's text style

FAQ

Android: Modal does not response the touchables :O

Check out react-native-gesture-handler's documentation to set it up.

Future Plans

  • LICENSE
  • Write an article about the lib on Medium

Credits

Thank you for this awesome inspiration João Angelo

Author

FreakyCoder, [email protected]

License

React Native Permissions Modal is available under the MIT license. See the LICENSE file for more info.

Icons made by Prosymbols from www.flaticon.com Icons made by Google from www.flaticon.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].