belovance / QuickAlert

An instantly ready, full-featured alerts for development on any platform with flutter. Enabling you to complete projects and deploy quickly. With QuickAlert, you can display animated alert dialogs such as success, error, warning, confirm, loading or even a custom dialog.
https://pub.dev/packages/quickalert
MIT License
46 stars 42 forks source link

How to remove the Success trext from QuickAlertType.success #24

Closed AshwinKumar021 closed 1 year ago

AshwinKumar021 commented 1 year ago

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

Smartphone (please complete the following information):

Additional context Add any other context about the problem here.

ItsAkashS22 commented 1 year ago

Hi @AshwinKumar021 👋 You can use the title parameter in the QuickAlert.show() method to set the title. You can set it to empty string to remove the title.

Example:

QuickAlert.show(
 context: context,
 type: QuickAlertType.success,
 title: ' ',
);
AshwinKumar021 commented 11 months ago

ok let me try... thanks