OutlinedButton - hpi-swa-teaching/MaterialDesignWidgets GitHub Wiki
class MDOutlinedButton
You can create an OutlinedButton by simply calling MDOutlinedButton new openInHand.
This will show the default OutlinedButton.
To create a basic custom MDOutlinedButton you might want to use something like the following:
MDOutlinedButton new
text: 'Change my color';
target: [self textColor: Color blue];
actionSelector: #value;
openInHand
Customizing a MDOutlinedButton
Appearance
text: aStringset the button's texttextColor: aStringOrColorset the text's colorbackgroundColor: aStringOrColorset the background color
Actions
target: anObjectset the target the messageactionSelectorwill be send toactionSelector: aSymbolOrStringset the message which will be send totargetarguments: aCollectionset the arguments for the messageactionSelectorwhich be send totarget