1.0.24 • Published 9 months ago

react-native-beautiful-alerts v1.0.24

Weekly downloads
-
License
ISC
Repository
-
Last release
9 months ago

Screenshort

Getting Started

This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.

Installation

This is an example of how to list things you need to use the software and how to install them.

  • npm
    npm install react-native-beautiful-alerts

Define app

Below is an example of how you can instruct your audience on installing and setting up your app. This template doesn't rely on any external dependencies or services.

import { Provider } from 'react-native-beautiful-alerts'

const App = () => {
	return (
		<Provider>
			<Routes/>
		</Provider>
	)
}

Usage

import { useAlert, ButtonStyle } from 'react-native-beautiful-alerts'

const Component = () => {
	const alert = useAlert()

	// Show Alert Without Buttons
	const showAlertWithoutButtons = () => {
		alert.success({
			title: 'Success!',
			description: 'The description'
		})
		// Available types: error, warning, success
	}
	
	// Show Alert With Buttons
	const showAlertWithButtons = () => {
		alert.message({
			title: 'Title',
			description: 'Select an action',
			buttons: [
				{
					text: 'Click',
					style: ButtonStyle.Regular,
					onPress: () => console.log('Pressed!')
				},
				{
					text: 'Cancel',
					style: ButtonStyle.Cancel,
					onPress: () => console.log('Pressed!')
				},
				{
					text: 'Bold',
					style: ButtonStyle.Bold,
					onPress: () => console.log('Pressed!')
				},
				{
					text: 'Danger',
					style: ButtonStyle.Danger,
					onPress: () => console.log('Pressed!')
				}
			]
		})
	}
	return (
		<View>
			<TouchableOpacity
				onPress={showAlertWithoutButtons}
			>
				<Text>Show Success Alert</Text>
			</TouchableOpacity>
			<TouchableOpacity
				onPress={showAlertWithButtons}
			>
				<Text>Show Alert with Buttons</Text>
			</TouchableOpacity>
		</View>
	)
}

See the open issues for a full list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

1.0.22

12 months ago

1.0.24

9 months ago

1.0.23

12 months ago

1.0.19

1 year ago

1.0.21

1 year ago

1.0.20

1 year ago

1.0.18

1 year ago

1.0.17

1 year ago

1.0.16

1 year ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago