With Felgo, you can use many 3rd party services from QML or QtWidget.
All of these plugins work cross-platform, which allows you to maintain a single code base.
import QtQuick 2.0 import QtQuick.Controls 2.0 import Felgo 3.0 ApplicationWindow { OneSignal { appId: "<ONESIGNAL-APP-ID>" onNotificationReceived: { console.debug("Received push: ", message) } } }
Push Notification QML Example