react-native-popup-dialog-3
Version:
React Native Popup Dialog for IOS & Android.
35 lines (32 loc) • 813 B
JavaScript
import {
PopupDialogType,
DialogType,
DialogButtonType,
DialogTitleType,
OverlayType,
} from './type';
import PopupDialog from './PopupDialog';
import Overlay from './components/Overlay';
import DialogTitle from './components/DialogTitle';
import DialogButton from './components/DialogButton';
import Dialog from './components/Dialog';
import Animation from './animations/Animation';
import FadeAnimation from './animations/FadeAnimation';
import ScaleAnimation from './animations/ScaleAnimation';
import SlideAnimation from './animations/SlideAnimation';
export {
Overlay,
DialogButton,
DialogTitle,
Dialog,
Animation,
FadeAnimation,
ScaleAnimation,
SlideAnimation,
PopupDialogType,
DialogType,
DialogButtonType,
DialogTitleType,
OverlayType,
};
export default PopupDialog;