mirror of
https://github.com/dyuri/garmin-repafield.git
synced 2025-12-16 19:24:01 +00:00
28 lines
709 B
MonkeyC
28 lines
709 B
MonkeyC
import Toybox.Application;
|
|
import Toybox.Lang;
|
|
import Toybox.WatchUi;
|
|
|
|
class RepaFieldApp 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 RepaFieldView() ] as Array<Views or InputDelegates>;
|
|
}
|
|
|
|
}
|
|
|
|
function getApp() as RepaFieldApp {
|
|
return Application.getApp() as RepaFieldApp;
|
|
} |