You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Title:"✅ Success", // set your notificaiton title here
21
-
Text: "Your settings have been saved successfully.", // put you notification text here
22
-
Type: NotificationType.Success, // used for notification appearance
23
-
Duration: 2000 // Notification duration in milliseconds
24
-
}
25
-
)
44
+
45
+
NotificationToaster_1.Notify(//replace 'NotificationToaster_1' by the name of the component in your app screen
46
+
"✅ Success",// Mandatory : Title of your notification in bold text
47
+
NotificationType.Success, // Optionnal : NotificationType.Information by default
48
+
"Your settings have been saved successfully.", // Optional : Detailled notifiction text
49
+
3000 // Optionnal : The notification lifetime will be calculated based on the number of characters to be read and the 'ReadingSpeed' in the 'Theme' parameter
50
+
26
51
Componnent positionning : To position the component in the bottom right corner of your screen, use the following positioning formulas:
27
52
x: Parent.Width-Self.Width
28
53
y: Parent.Height-Self.Height
29
54
30
55
*/
31
56
{Transparency:"99", // in hexadecimal : from 00(transparent) to ff (opaque)
32
57
FontSize:11,
58
+
ReadingSpeed:23, // chars per second, used to calculate default notification duration
33
59
SuccessTextColor:"#ffffff",
34
60
SuccessBckgndColor:"#009944",
35
61
ErrorTextColor:"#ffffff",
@@ -45,7 +71,8 @@ ComponentDefinitions:
45
71
Height: |-
46
72
=// Adjusts the height according to the number of notifications without exceeding the screen height, do not modify
0 commit comments