allow dragging app icons from All Fragments to home screen

This commit is contained in:
tibbi
2022-09-22 22:05:40 +02:00
parent 61801ebcb2
commit 06738b595c
2 changed files with 37 additions and 8 deletions

View File

@ -12,7 +12,7 @@ interface HomeScreenGridItemsDao {
fun getAllItems(): List<HomeScreenGridItem>
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insert(item: HomeScreenGridItem)
fun insert(item: HomeScreenGridItem): Long
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insertAll(items: List<HomeScreenGridItem>)