feat: integrate sort recent searches chronologically

This commit is contained in:
j4mm3ris 2025-12-07 13:24:03 +02:00
parent 37842fd897
commit b89e18eebf
9 changed files with 1191 additions and 6 deletions

View file

@ -13,5 +13,8 @@ import kotlinx.parcelize.Parcelize
data class RecentSearch(
@PrimaryKey
@ColumnInfo(name = "search")
var search: String
var search: String,
@ColumnInfo(name = "timestamp", defaultValue = "0")
var timestamp: Long
) : Parcelable