initial commit

This commit is contained in:
2025-10-09 14:37:45 +03:00
commit d75a0b235d
15 changed files with 341 additions and 0 deletions

22
source/wfBackground.mc Normal file
View File

@ -0,0 +1,22 @@
import Toybox.Application;
import Toybox.Graphics;
import Toybox.Lang;
import Toybox.WatchUi;
class Background extends WatchUi.Drawable {
function initialize() {
var dictionary = {
:identifier => "Background"
};
Drawable.initialize(dictionary);
}
function draw(dc as Dc) as Void {
// Set the background color then call to clear the screen
dc.setColor(Graphics.COLOR_TRANSPARENT, getApp().getProperty("BackgroundColor") as Number);
dc.clear();
}
}