-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth_page.dart
More file actions
118 lines (112 loc) · 4.12 KB
/
auth_page.dart
File metadata and controls
118 lines (112 loc) · 4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import 'package:flutter/material.dart';
import 'package:healthcare_app/widgets/custom_button.dart';
import 'package:healthcare_app/widgets/custom_input.dart';
import 'location_page.dart';
class AuthPage extends StatefulWidget {
const AuthPage({super.key});
@override
State<AuthPage> createState() => _AuthPageState();
}
class _AuthPageState extends State<AuthPage>
with SingleTickerProviderStateMixin {
bool isSignIn = true;
late AnimationController _animationController;
late Animation<double> _animation;
@override
void initState() {
super.initState();
_animationController = AnimationController(
vsync: this,
duration: const Duration(milliseconds: 500),
);
_animation = Tween<double>(begin: 0, end: 1).animate(_animationController);
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [Colors.blue[300]!, Colors.blue[600]!],
),
),
child: SafeArea(
child: Center(
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(32.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
AnimatedSwitcher(
duration: const Duration(milliseconds: 500),
child: Text(
isSignIn ? 'Welcome Back' : 'Create Account',
key: ValueKey<bool>(isSignIn),
style: const TextStyle(
fontSize: 32,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(height: 32),
const CustomInput(hint: 'Email'),
const SizedBox(height: 16),
const CustomInput(hint: 'Password', isPassword: true),
if (!isSignIn) ...[
const SizedBox(height: 16),
const CustomInput(
hint: 'Confirm Password', isPassword: true),
],
const SizedBox(height: 32),
CustomButton(
text: isSignIn ? 'Sign In' : 'Sign Up',
onPressed: () {
Navigator.pushReplacement(
context,
PageRouteBuilder(
pageBuilder:
(context, animation, secondaryAnimation) =>
const LocationPage(),
transitionsBuilder: (context, animation,
secondaryAnimation, child) {
return FadeTransition(
opacity: animation, child: child);
},
),
);
},
),
const SizedBox(height: 16),
TextButton(
child: Text(
isSignIn
? 'Create an account'
: 'Already have an account?',
style: const TextStyle(color: Colors.white),
),
onPressed: () {
setState(() {
isSignIn = !isSignIn;
});
_animationController.forward(from: 0);
},
),
],
),
),
),
),
),
),
);
}
@override
void dispose() {
_animationController.dispose();
super.dispose();
}
}