1.0.9 • Published 3 days ago

applove v1.0.9

Weekly downloads
-
License
MIT
Repository
-
Last release
3 days ago

Project Overview

Hi there! 👋 Welcome to my project, developed with the primary goal of learning and enhancing my skills. I didn't set any specific expectations for this project other than personal growth and skill improvement.

Available Scripts

In the project directory, you can run to install:

npm i applove

Here is example useage applove, for confirm dialog

Screenshots

Local Image

import applove from 'applove'

applove.confirm({ 
    title: "Please confirm", 
    confirmButtonLabel: "Confirm", 
    cancelButtonLabel: "Cancel", 
    type: "question" 
}).then(response => {
    if (response.result) {
        // User clicked "Yes"
        console.log("Confirmed");
    } else {
        // User clicked "No" or closed the dialog
        console.log("Canceled");
    }
});

Here is example useage applove, for alert success, error or something like that.

Screenshots

Local Image

applove.success({ 
    title: "Operation successful", 
    exitButtonLabel: "Close" 
});

applove.error({ 
    title: "Error occurred", 
    exitButtonLabel: "Close" 
});

applove.warning({ 
    title: "Warning", 
    exitButtonLabel: "Close" 
});

applove.info({ 
    title: "Information", 
    exitButtonLabel: "Close" 
});
1.0.9

3 days ago

1.0.8

26 days ago

1.0.7

30 days ago

1.0.6

30 days ago

1.0.5

1 month ago

1.0.4

1 month ago

1.0.3

1 month ago

1.0.2

1 month ago

1.0.1

1 month ago

1.0.0

1 month ago