Native
"react-native-alert-loading": "sergeymild/react-native-alert-loading-view#0.2.6"
yarn
import { showAlertLoading, hideAlertLoading } from 'react-native-alert-loading';
export interface AlertLoadingShowParams {
readonly overlayColor?: string;
readonly color?: string;
readonly animate?: boolean;
readonly type: 'circleStrokeSpin' | 'ballSpinFadeLoader' | 'ballClipRotate';
}
export interface AlertLoadingHideParams {
readonly animate?: boolean;
}
showAlertLoading(params: AlertLoadingShowParams);
hideAlertLoading(params?: AlertLoadingHideParams);
// ...
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT