This commit is contained in:
Juki-shiba 2025-03-06 18:19:14 +05:30
parent e3d8144b3c
commit 9cca004955
3 changed files with 7 additions and 3 deletions

View File

@ -653,6 +653,7 @@ class _CreateNewPwState extends ConsumerState<CreateNewPw> {
padding: const EdgeInsets.all(20.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
SizedBox(height: screenHeight / 8),
Icon(Icons.check_circle_outlined, color: Color(0xFF8AC681), size: 80),
@ -667,7 +668,7 @@ class _CreateNewPwState extends ConsumerState<CreateNewPw> {
color: Color(0xFF414042),
),
),
SizedBox(height: 10),
SizedBox(height: 20),
ElevatedButton(
onPressed: () async {
context.go('/login');
@ -724,6 +725,7 @@ class _CreateNewPwState extends ConsumerState<CreateNewPw> {
),
),
SizedBox(height: screenHeight / 2.2),
Spacer(),
Center(
// child: Container(
// height: 40,

View File

@ -2356,7 +2356,9 @@ class _ChartScreen1State extends ConsumerState<ChartScreen1> {
width: 24,
height: 24,
),
],),),
],
),
),
],
),
SizedBox(

View File

@ -975,7 +975,7 @@ class _BaseScaffoldState extends ConsumerState<BaseScaffold> {
onTap: () => _navigateTo(context, '/user-guide'),
),
ListTile(
leading: Icon(Icons.phone),
leading: Icon(Icons.mail_outlined),
title: const Text('Contact'),
onTap: () => context.push('/contact'),
),