We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2944047 commit b8bc0b4Copy full SHA for b8bc0b4
app/src/main/java/to/bitkit/viewmodels/AppViewModel.kt
@@ -1560,21 +1560,11 @@ class AppViewModel @Inject constructor(
1560
)
1561
}
1562
1563
- fun hideToast() {
1564
- toastManager.dismissCurrentToast()
1565
- }
+ fun hideToast() = toastManager.dismissCurrentToast()
1566
1567
- fun pauseToast() {
1568
- toastManager.pauseCurrentToast()
1569
+ fun pauseToast() = toastManager.pauseCurrentToast()
1570
1571
- fun resumeToast() {
1572
- toastManager.resumeCurrentToast()
1573
1574
-
1575
- fun clearToastQueue() {
1576
- toastManager.clear()
1577
+ fun resumeToast() = toastManager.resumeCurrentToast()
1578
// endregion
1579
1580
// region security
0 commit comments