diff options
| author | JF <jf@codingfield.com> | 2020-10-20 18:57:39 (GMT) |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-10-20 18:57:39 (GMT) |
| commit | ef5670c7e09a1a63fc5df4a066472ed7fe7550ff (patch) | |
| tree | 3f7999c0dd4c4cfc42a04f7904205ffd914cc225 /src/displayapp/screens/NotificationIcon.cpp | |
| parent | 55427d83b87960903cd6213ac9c73e694ee547bd (diff) | |
Integrate new notification UI with notifications coming from BLE
Diffstat (limited to 'src/displayapp/screens/NotificationIcon.cpp')
| -rw-r--r-- | src/displayapp/screens/NotificationIcon.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/displayapp/screens/NotificationIcon.cpp b/src/displayapp/screens/NotificationIcon.cpp new file mode 100644 index 0000000..64898c2 --- /dev/null +++ b/src/displayapp/screens/NotificationIcon.cpp @@ -0,0 +1,8 @@ +#include "NotificationIcon.h" +#include "Symbols.h" +using namespace Pinetime::Applications::Screens; + +const char* NotificationIcon::GetIcon(bool newNotificationAvailable) { + if(newNotificationAvailable) return Symbols::info; + else return ""; +}
\ No newline at end of file |
