Created
May 16, 2021 16:06
-
-
Save pauloaapereira/d048e84d45c7031f7c86150f63b35af8 to your computer and use it in GitHub Desktop.
Android SOLID Error Handling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ErrorViewWithWarning : ErrorView { | |
var warning: Snackbar? | |
fun showWarning(root: View) | |
fun dismissWarning() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment