
Replace separate SettingSetDate and SettingSetTime with a combined screenlist. Add DotIndicators. Similar to PageIndicator, but for use when separating screens instead of pages of a list. Co-authored-by: Riku Isokoski <riksu9000@gmail.com>
19 lines
332 B
C++
19 lines
332 B
C++
#pragma once
|
|
#include <lvgl/lvgl.h>
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Widgets {
|
|
class DotIndicator {
|
|
public:
|
|
DotIndicator(uint8_t nCurrentScreen, uint8_t nScreens);
|
|
void Create();
|
|
|
|
private:
|
|
uint8_t nCurrentScreen;
|
|
uint8_t nScreens;
|
|
};
|
|
}
|
|
}
|
|
}
|