Initial commit

This commit is contained in:
2022-07-11 20:35:28 +02:00
parent ae09bfc965
commit c554aa1cd2
13 changed files with 331 additions and 0 deletions

28
source/terminalfaceApp.mc Normal file
View File

@@ -0,0 +1,28 @@
import Toybox.Application;
import Toybox.Lang;
import Toybox.WatchUi;
class terminalfaceApp extends Application.AppBase {
function initialize() {
AppBase.initialize();
}
// onStart() is called on application start up
function onStart(state as Dictionary?) as Void {
}
// onStop() is called when your application is exiting
function onStop(state as Dictionary?) as Void {
}
// Return the initial view of your application here
function getInitialView() as Array<Views or InputDelegates>? {
return [ new terminalfaceView() ] as Array<Views or InputDelegates>;
}
}
function getApp() as terminalfaceApp {
return Application.getApp() as terminalfaceApp;
}