We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64a0e1c commit 45037b3Copy full SHA for 45037b3
1 file changed
android_notify/styles.py
@@ -6,8 +6,14 @@ class NotificationStyles:
6
7
PROGRESS = "progress"
8
INBOX = "inbox"
9
+
10
+ # v1.59+
11
+ # Deprecated
12
+ # setBigText == Notification(...,big_picture_path="...",style=NotificationStyles.BIG_TEXT)
13
+ # setLargeIcon == Notification(...,large_icon_path="...",style=NotificationStyles.LARGE_ICON)
14
+ # setBigPicture == Notification(...,body="...",style=NotificationStyles.BIG_PICTURE)
15
+ # Use .refresh to apply any new changes after .send
16
BIG_TEXT = "big_text"
-
17
LARGE_ICON = "large_icon"
18
BIG_PICTURE = "big_picture"
19
BOTH_IMGS = "both_imgs"
0 commit comments