shape method

ButtonStyle shape(
  1. bool enable
)

Implementation

ButtonStyle shape(bool enable) {
  return ElevatedButton.styleFrom(
      elevation: 8,
      backgroundColor: enable
          ? StyleMyFile.elevatedButtonEnable
          : StyleMyFile.elevatedButtonDisable,
      textStyle: buildTextStyle(enable),
      shape: StyleMyFile.elevatedButtonShape);
}