rn-toastify
Version:
A customizable and performant toast notification library for React Native, featuring smooth animations, swipe gestures, and flexible styling options.
48 lines (44 loc) • 1.28 kB
JavaScript
import LottieView from 'lottie-react-native';
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
import {
heightPercentageToDP as hp,
widthPercentageToDP as wp,
} from '../utils/Pixel/Index';
const SuccessToast = ({ message }) => {
return (
<View style={styles.container}>
<LottieView
source={require('../../assets/animated_Icon/SuccessAnimation.json')} // Replace with your success Lottie animation path
autoPlay
loop={false}
style={styles.lottie}
speed={1.2}
/>
<Text style={styles.text}>{message}</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
width: wp(87),
height: hp(6.8),
paddingHorizontal: wp(4),
borderRadius: wp(4),
// backgroundColor: '#d2f7d2',
backgroundColor: '#F7F7FC',
alignItems: 'center',
flexDirection: 'row',
},
text: {
fontSize: hp(2.3),
color: 'black',
fontWeight: '500',
paddingHorizontal: wp(3)
},
lottie: {
width: wp(8),
height: hp(4),
},
});
export default SuccessToast;