mirror of
https://github.com/ente-io/ente.git
synced 2025-08-13 09:47:17 +00:00
Move into auth/
This commit is contained in:
33
auth/lib/ui/components/models/custom_button_style.dart
Normal file
33
auth/lib/ui/components/models/custom_button_style.dart
Normal file
@@ -0,0 +1,33 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class CustomButtonStyle {
|
||||
Color defaultButtonColor;
|
||||
Color? pressedButtonColor;
|
||||
Color? disabledButtonColor;
|
||||
Color defaultBorderColor;
|
||||
Color? pressedBorderColor;
|
||||
Color? disabledBorderColor;
|
||||
Color defaultIconColor;
|
||||
Color? pressedIconColor;
|
||||
Color? disabledIconColor;
|
||||
TextStyle defaultLabelStyle;
|
||||
TextStyle? pressedLabelStyle;
|
||||
TextStyle? disabledLabelStyle;
|
||||
Color? checkIconColor;
|
||||
|
||||
CustomButtonStyle({
|
||||
required this.defaultButtonColor,
|
||||
this.pressedButtonColor,
|
||||
this.disabledButtonColor,
|
||||
required this.defaultBorderColor,
|
||||
this.pressedBorderColor,
|
||||
this.disabledBorderColor,
|
||||
required this.defaultIconColor,
|
||||
this.pressedIconColor,
|
||||
this.disabledIconColor,
|
||||
required this.defaultLabelStyle,
|
||||
this.pressedLabelStyle,
|
||||
this.disabledLabelStyle,
|
||||
this.checkIconColor,
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user