I have extended the MaterialButton to display a consistent loading state on the button when clicked however I ran into a minor issue when implementing SavedState restoration.
The progress button variant of this I have written, disables the view, displays an animated loading spinner, optionally displays loading text and restores then restores the previously displayed text/state when the view is enabled.
MaterialButton.SavedState is package-private so cannot be extended externally. This does not create a problem with my implementation as I don't use the 'checked' field it extends but it does raise these questions:
TLDR
- Is it wrong to extend this MaterialButton?
- If not would it be appropriate to submit a PR to the public repo to make SavedState public?
The
MaterialButton
is not a final class then you can extend it, and for example theExtendedFloatingActionButton
extends it.You don't need to make
MaterialButton.SavedState
public. You can do something like:In this way the
MyButton.SavedState
will contain also theMaterialButton.SaveState
without extending it.