revert back to old map style UI

This commit is contained in:
PWRxPSYCHO 2022-10-20 21:43:27 -04:00
parent 07cc8ce701
commit b9ae181ee4
8 changed files with 10 additions and 229 deletions

View file

@ -1,3 +0,0 @@
package com.geeksville.mesh.model.map
data class ChildData(val childTitle: String)

View file

@ -1,6 +0,0 @@
package com.geeksville.mesh.model.map
object Constants {
const val PARENT = 0
const val CHILD = 1
}

View file

@ -1,8 +0,0 @@
package com.geeksville.mesh.model.map
data class MapParentData(
val title: String? = null,
var type:Int = Constants.PARENT,
var subList: MutableList<ChildData> = ArrayList(),
var isExpanded: Boolean = false
)