diff options
author | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-08 02:09:47 -0600 |
---|---|---|
committer | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-08 02:09:47 -0600 |
commit | d2ee6a21355c390a4aaefc6ea847060c8e47c6ae (patch) | |
tree | 3a4000d6c933109a91add937827168ab0a18c1b7 /shared/src/commonMain/kotlin/mx/trackermap/TrackerMap | |
parent | c80ece3087b862e1849ad5c2972b9b13fec2eb3f (diff) | |
download | etbsa-trackermap-mobile-d2ee6a21355c390a4aaefc6ea847060c8e47c6ae.tar.gz etbsa-trackermap-mobile-d2ee6a21355c390a4aaefc6ea847060c8e47c6ae.tar.bz2 etbsa-trackermap-mobile-d2ee6a21355c390a4aaefc6ea847060c8e47c6ae.zip |
WIP: Starts implementing the main activity
- Removes the MainActivity and the shared code it was using
- Adds the UnitsActivity
- Implements the Map/List toggle functionality
Diffstat (limited to 'shared/src/commonMain/kotlin/mx/trackermap/TrackerMap')
-rw-r--r-- | shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Greeting.kt | 7 | ||||
-rw-r--r-- | shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Platform.kt | 5 |
2 files changed, 0 insertions, 12 deletions
diff --git a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Greeting.kt b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Greeting.kt deleted file mode 100644 index 68b4100..0000000 --- a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Greeting.kt +++ /dev/null @@ -1,7 +0,0 @@ -package mx.trackermap.TrackerMap - -class Greeting { - fun greeting(): String { - return "Hello, ${Platform().platform}!" - } -}
\ No newline at end of file diff --git a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Platform.kt b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Platform.kt deleted file mode 100644 index 9f39005..0000000 --- a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/Platform.kt +++ /dev/null @@ -1,5 +0,0 @@ -package mx.trackermap.TrackerMap - -expect class Platform() { - val platform: String -}
\ No newline at end of file |