We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e96c042 commit bbc24e8Copy full SHA for bbc24e8
1 file changed
src/displayapp/screens/FirmwareUpdate.cpp
@@ -9,6 +9,12 @@ using namespace Pinetime::Applications::Screens;
9
FirmwareUpdate::FirmwareUpdate(Pinetime::Applications::DisplayApp *app, Pinetime::Controllers::Ble& bleController) :
10
Screen(app), bleController{bleController} {
11
12
+ lv_obj_t * backgroundLabel = lv_label_create(lv_scr_act(), nullptr);
13
+ lv_label_set_long_mode(backgroundLabel, LV_LABEL_LONG_CROP);
14
+ lv_obj_set_size(backgroundLabel, 240, 240);
15
+ lv_obj_set_pos(backgroundLabel, 0, 0);
16
+ lv_label_set_text_static(backgroundLabel, "");
17
+
18
titleLabel = lv_label_create(lv_scr_act(), nullptr);
19
lv_label_set_text(titleLabel, "Firmware update");
20
lv_obj_set_auto_realign(titleLabel, true);
0 commit comments