diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-12-29 01:28:18 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-12-29 01:29:43 -0500 |
commit | 20d76f947ef9d4a9093df0e5ad04476963655173 (patch) | |
tree | 4d323de5372da2e6b7bf457c89c25c2f6b2b09bd /lib/Buttons | |
parent | fe23ca5ecdabd698917c4e84915151fc32cb335e (diff) |
Spelling fixeslamprey_12.1.13lamprey/12.1.1312.1.13
Changes:
- Update Caustom -> Custom
- Update Tier -> Tire
Bug-AGL: SPEC-4642
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Ibb8029140e5717f01fb297de4962547a51645347
Diffstat (limited to 'lib/Buttons')
-rw-r--r-- | lib/Buttons/defrost_recirculate.dart | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Buttons/defrost_recirculate.dart b/lib/Buttons/defrost_recirculate.dart index 30ac40d..909bbf5 100644 --- a/lib/Buttons/defrost_recirculate.dart +++ b/lib/Buttons/defrost_recirculate.dart @@ -10,12 +10,12 @@ import 'package:flutter_hvac/kuksa-server/vehicle-provider.dart'; import 'package:flutter_hvac/kuksa-server/vehicle_methods.dart'; import 'package:flutter_hvac/size.dart'; -class CaustomButton extends ConsumerStatefulWidget { +class CustomButton extends ConsumerStatefulWidget { WebSocket socket; String serverPath; String img; String type; - CaustomButton({ + CustomButton({ Key? key, required this.serverPath, required this.socket, @@ -24,10 +24,10 @@ class CaustomButton extends ConsumerStatefulWidget { }) : super(key: key); @override - _CaustomButtonState createState() => _CaustomButtonState(); + _CustomButtonState createState() => _CustomButtonState(); } -class _CaustomButtonState extends ConsumerState<CaustomButton> +class _CustomButtonState extends ConsumerState<CustomButton> with SingleTickerProviderStateMixin { late AnimationController _controller; late vehicle vehicledata; |