TF-888 Apply new design for vacation on desktop

This commit is contained in:
dab246
2022-09-09 19:11:52 +07:00
committed by Dat H. Pham
parent 6e4d160389
commit 67865fd1a2
14 changed files with 518 additions and 479 deletions
@@ -13,6 +13,11 @@ abstract class InputDecorationBuilder {
OutlineInputBorder? focusBorder;
String? errorText;
TextStyle? errorTextStyle;
Color? fillColor;
void setFillColor(Color? newColor) {
fillColor = newColor;
}
void setPrefixText(String? newPrefixText) {
prefixText = newPrefixText;
@@ -74,7 +79,7 @@ abstract class InputDecorationBuilder {
errorText: errorText,
errorStyle: errorTextStyle,
enabledBorder: enabledBorder,
focusedBorder: focusBorder
focusedBorder: focusBorder,
);
}
}