Add focused location tracking when opening the map

This commit is contained in:
ganfra 2026-04-10 21:11:30 +02:00
parent 5f3226107a
commit f6eeea2134
6 changed files with 28 additions and 16 deletions

View file

@ -24,5 +24,7 @@ sealed interface ShowLocationMode : Parcelable {
) : ShowLocationMode
@Parcelize
data object Live : ShowLocationMode
data class Live(
val senderId: UserId
) : ShowLocationMode
}