react-native-popup-dialog
Version:
React Native Popup Dialog for IOS & Android.
43 lines (40 loc) • 1.06 kB
JavaScript
import {
DialogProps,
DialogFooterProps,
DialogFooterActionList,
DialogButtonProps,
DialogTitleProps,
DialogContentProps,
OverlayProps,
} from './type';
import PopupDialog from './PopupDialog';
import Overlay from './components/Overlay';
import DialogTitle from './components/DialogTitle';
import DialogFooter from './components/DialogFooter';
import DialogButton from './components/DialogButton';
import DialogContent from './components/DialogContent';
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 {
Dialog,
Overlay,
DialogButton,
DialogContent,
DialogTitle,
DialogFooter,
Animation,
FadeAnimation,
ScaleAnimation,
SlideAnimation,
DialogProps,
DialogFooterProps,
DialogFooterActionList,
DialogButtonProps,
DialogTitleProps,
DialogContentProps,
OverlayProps,
};
export default PopupDialog;