Notifications

Options and examples

1.0.0
-- # SUCCESS
QT.Notify({
    title = "NASLOV TEST",
    msg = "Testara poruka",
    type = "success"
})

-- # ERROR
QT.Notify({
    title = "NASLOV TEST",
    msg = "Testara poruka",
    type = "error"
})

-- # WARNING
QT.Notify({
    title = "NASLOV TEST",
    msg = "Testara poruka",
    type = "warning"
})

-- # INFO
QT.Notify({
    title = "NASLOV TEST",
    msg = "Testara poruka",
    type = "info"
})

-- # SYSTEM
QT.Notify({
    title = "NASLOV TEST",
    msg = "Testara poruka",
    type = "system"
})

Last updated