react-native-custom-snackbar

This is a custom animated snackbar for both Android and iOS devices.


Keywords
react-native, snackbar, custom snackbar, animated snackbar
License
MIT
Install
npm install react-native-custom-snackbar@1.0.1

Documentation

react-native-custom-snackbar

react-native-custom-snackbar is a custom animated snackbar for both Android and iOS devices.

Installation

npm install react-native-custom-snackbar --save

Properties

snackBarBackColor = "rgba(0,0,0,0.8)" // Background color of Snackbar.
snackBarTextColor: 'white' // Snackbar Message color.
closeText: '' // Text for close button such as: UNDO, CLOSE etc. If provided blank the image is shown to close Snackbar.
closeTextColor: 'rgb(253,85,82)' // Text color for close button.
imageColor: 'rgb(253,85,82)' // Tint color of close image button.

Screenshots:

alt text alt text

Usage Example

  1. First generate a new React native project:
react-native init CustomSnackbar
cd CustomSnackbar
npm install react-native-custom-snackbar --save
  1. Then paste the following code into your index.android.js / index.ios.js file:
import React, { Component } from 'react';
import { View, TouchableOpacity, Text, StyleSheet, Platform, AppRegistry } from 'react-native';

import SnackBar from 'react-native-custom-snackbar';

class CustomSnackbar extends Component
{
   constructor()
   {
      super();
   }

   showSnackBar = () =>
   {
      this.refs.mySnackBar.show("Custom SnackBar Text...");
   }

   render()
   {
      return(
         <View style = { styles.container }>
            <TouchableOpacity activeOpacity = { 0.8 } onPress = { this.showSnackBar } style = { styles.button }>
              <Text style = { styles.btnText }>Show Snack Bar</Text>
            </TouchableOpacity>

            <SnackBar
            	ref = "mySnackBar"
            	closeText = "close"/>
         </View>
      );
   }
}

const styles = StyleSheet.create(
{
	container:
	{
		flex: 1,
		justifyContent: 'center',
		alignItems: 'center',
		paddingHorizontal: 15,
		paddingTop: (Platform.OS) === 'ios' ? 20 : 0
	},

	button:
	{
		backgroundColor: 'rgba(0,0,0,0.6)',
		padding: 10,
		alignSelf: 'stretch'
	},

	btnText:
	{
		alignSelf: 'stretch',
		color: 'white',
		fontSize: 18,
		textAlign: 'center'
	}
});

AppRegistry.registerComponent('CustomSnackbar', () => CustomSnackbar);