Skip to content

Commit

Permalink
idk #2
Browse files Browse the repository at this point in the history
  • Loading branch information
iyoubee committed Dec 10, 2022
1 parent e9b4757 commit de5483a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions lib/components/Colors.dart

This file was deleted.

4 changes: 2 additions & 2 deletions lib/components/field_email.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// ignore_for_file: file_names

import 'package:trashsure/components/colors.dart';
import 'package:flutter/material.dart';

class EmailField extends StatefulWidget {
Expand Down Expand Up @@ -33,7 +32,8 @@ class _EmailFieldState extends State<EmailField>
emailController = widget.emailController;
_animationController = AnimationController(
vsync: this, duration: const Duration(milliseconds: 300));
final tween = ColorTween(begin: Colors.grey.withOpacity(0), end: blueColor);
final tween = ColorTween(
begin: Colors.grey.withOpacity(0), end: const Color(0xff21579C));

_animation = tween.animate(_animationController)
..addListener(() {
Expand Down

0 comments on commit de5483a

Please sign in to comment.