Skip to content

Commit

Permalink
Commit from GitHub Actions (Forui Presubmit)
Browse files Browse the repository at this point in the history
  • Loading branch information
sommye-ctr committed Aug 15, 2024
1 parent c784e14 commit 3e449db
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions forui/lib/src/widgets/button/button_styles.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ class FButtonStyles with Diagnosticable {

/// Creates a [FButtonCustomStyle] that inherits its properties from the provided [colorScheme], [typography], and
/// [style].
FButtonStyles.inherit(
{required FColorScheme colorScheme,
required FTypography typography,
required FStyle style})
FButtonStyles.inherit({required FColorScheme colorScheme, required FTypography typography, required FStyle style})
: primary = FButtonCustomStyle(
enabledBoxDecoration: BoxDecoration(
borderRadius: style.borderRadius,
Expand Down Expand Up @@ -162,9 +159,5 @@ class FButtonStyles with Diagnosticable {
outline == other.outline;

@override
int get hashCode =>
primary.hashCode ^
secondary.hashCode ^
destructive.hashCode ^
outline.hashCode;
int get hashCode => primary.hashCode ^ secondary.hashCode ^ destructive.hashCode ^ outline.hashCode;
}

0 comments on commit 3e449db

Please sign in to comment.