Description:
A React Native component for Clipboard API with animated toast message.
How to use it:
1. Install and import the component.
# Yarn $ yarn add react-native-clipboard-toast
# NPM $ npm i react-native-clipboard-toast
import ClipboardToast from 'react-native-clipboard-toast';
2. Add the ClipboardToast to the app and define the text to be copied.
<ClipboardToast
textToShow={`Text To Show`}
textToCopy={"Text To Copy"}
toastText={"Copied!"}
id={'toastID'}}
/>3. Default component props.
textToShow = '',
textToCopy = '',
toastText = 'Text is copied',
containerStyle = {},
textStyle = {},
id = 'someKey',
accessibilityLabel,
toastDuration = 750,
toastPosition,
toastDelay = 0,
toastAnimation = true,
toastHideOnPress = true,
toastBackgroundColor = null,
toastTextColor = null,
toastOnShow = () => {},



