add labels at the home screen icons

This commit is contained in:
tibbi
2022-09-19 23:10:11 +02:00
parent e0a17f48b4
commit d60ae7dd8b
2 changed files with 34 additions and 5 deletions

View File

@ -11,6 +11,9 @@ interface HomeScreenGridItemsDao {
@Query("SELECT * FROM home_screen_grid_items")
fun getAllItems(): List<HomeScreenGridItem>
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insert(item: HomeScreenGridItem)
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insertAll(items: List<HomeScreenGridItem>)