Notifications
Options and examples

-- # 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