Would it be possible to display a fonticon on a Nativescript dialog? Similar to this example?
dialogs.alert({
title: // set icon as text
message: "Check-in Successful"
}).then(()=> {
console.log("Dialog closed!");
});
Is it feasible to set the title as a FontAwesome string like String.fromCharCode(0xe903)? How can we assign a class to the title to display it as a FontAwesome icon?
I am attempting to showcase the following dialog upon successful login.
https://i.sstatic.net/maagI.png
Are there any alternative approaches?