-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New design #96
New design #96
Conversation
@shubertm please mark this PR with new label |
@Query("SELECT * FROM RoomAsset") | ||
fun allFlow(): Flow<List<RoomAsset>> | ||
|
||
@Query("DELETE FROM RoomAsset where id = :id") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Query("DELETE FROM RoomAsset where id = :id") | |
@Query("DELETE FROM RoomAsset WHERE id = :id") |
|
||
@Dao | ||
interface PortfolioDao { | ||
@Insert(onConflict = OnConflictStrategy.REPLACE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be replaced with @Upsert
annotation
@Insert(onConflict = OnConflictStrategy.REPLACE) | |
@Upsert |
app/src/main/java/dev/arkbuilders/rate/data/db/PairAlertRepoImpl.kt
Outdated
Show resolved
Hide resolved
@Insert(onConflict = OnConflictStrategy.REPLACE) | ||
suspend fun insert(pairAlert: RoomPairAlert): Long | ||
|
||
@Query("SELECT * FROM RoomPairAlert where id = :id") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Query("SELECT * FROM RoomPairAlert where id = :id") | |
@Query("SELECT * FROM RoomPairAlert WHERE id = :id") |
app/src/main/java/dev/arkbuilders/rate/data/db/PairAlertRepoImpl.kt
Outdated
Show resolved
Hide resolved
@shubertm |
design fixes fix clickable area
filter feature, create new pair from existed pair and code
inter font, fixes
fix bottom nav design
Firebase setup, track screen usage, remove ACRA revert fix Webview data directory suffix crash (caused by ACRA) ui fixes
Fix empty screen btn padding
minor fixes
white navigation bar intercept clicks on snackbar background sort CurrencyName by code in repo Quick item second icon fix fix fiat icons ui fix: center currency name if no description discord link
No description provided.