Components
Alert Dialog
Show an alert prompt in a dialog
Component Status Details
Status component contains a list of checks and completeness that has been tested and owned by each component
The Alert dialog component is utilized to show an alert prompt in a dialog. It will show alert in native dialog for the platform.
![Alert dialog legion react native](https://legion-legion-ui-images-public-stage.oss-ap-southeast-5.aliyuncs.com/legion/component/alertDialog/react-native/react-native-alert-demo.gif)
Usage
import { AlertDialog } from "@legion-crossplatform/ui";const Alert = () => {return (<AlertDialogtriggerLabel="Show Alert"title="Alert"description="By pressing yes you agree to the terms and conditions",
Props
Parameter | Type | Description |
---|---|---|
cancelText | String | Set text for cancel button |
confirmText | String | Set text for confirm button |
description | String | Set text for description in alert |
onPressConfirm | Function | To set action when pressing confirm button |
title | String | Set the title of alert |
triggerLabel | String | Set the button text of alert |