Skip to content

Instantly share code, notes, and snippets.

View mario-liu's full-sized avatar
🌴
learning

Mario Liu mario-liu

🌴
learning
View GitHub Profile
@jonmcclung
jonmcclung / Toast.qml
Last active May 8, 2024 13:06
Toast in QML. This implementation creates black toast with white text that appears at the bottom of the screen. It also supports adding multiple toast at a time using ToastManager with the newest toast at the bottom.
import QtQuick 2.0
/**
* adapted from StackOverflow:
* http://stackoverflow.com/questions/26879266/make-toast-in-android-by-qml
*/
/**
* @brief An Android-like timed message text in a box that self-destroys when finished if desired
*/