Package-level declarations
Types
Link copied to clipboard
class ExpandableShopListRecyclerView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyle: Int = 0) : RecyclerView, Snabble.OnMetadataUpdateListener
Recycler view for projects and shops. If there is more than one project given it inflates an expandable view, showing the projects as top layer. With a click on a specific projects the corresponding shops are shown right below.
Link copied to clipboard
data class Item(val id: String, val project: Project, var location: Location, val name: String, var type: ViewType, var isCheckedIn: Boolean = false, val shops: Int? = null, val street: String? = null, val zipCode: String? = null, val city: String? = null, var distance: Float? = null) : Comparable<Item>