Individual and Jwellery Account Setup done
This commit is contained in:
@@ -61,6 +61,7 @@ class _AuthScreenState extends ConsumerState<AuthScreen> with SingleTickerProvid
|
||||
InputDecoration _buildInputDecoration(String label, IconData icon) {
|
||||
return InputDecoration(
|
||||
labelText: label,
|
||||
labelStyle: TextStyle(color: Colors.grey.shade700),
|
||||
prefixIcon: Icon(icon, color: Colors.grey.shade500),
|
||||
filled: true,
|
||||
fillColor: Colors.white,
|
||||
@@ -107,11 +108,11 @@ class _AuthScreenState extends ConsumerState<AuthScreen> with SingleTickerProvid
|
||||
children: [
|
||||
Container(
|
||||
width: 80, height: 80,
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).primaryColor.withOpacity(0.1),
|
||||
decoration: const BoxDecoration(
|
||||
color: Colors.transparent,
|
||||
shape: BoxShape.circle,
|
||||
),
|
||||
child: Center(child: Image.asset('assets/logo.png', width: 50, height: 50, fit: BoxFit.contain)),
|
||||
child: Center(child: Image.asset('assets/logo.png', width: 80, height: 80, fit: BoxFit.contain)),
|
||||
),
|
||||
const SizedBox(height: 32),
|
||||
Text(
|
||||
@@ -180,7 +181,7 @@ class _AuthScreenState extends ConsumerState<AuthScreen> with SingleTickerProvid
|
||||
TextField(
|
||||
controller: emailController,
|
||||
keyboardType: TextInputType.emailAddress,
|
||||
style: const TextStyle(fontWeight: FontWeight.w500),
|
||||
style: const TextStyle(fontWeight: FontWeight.w500, color: Colors.black87),
|
||||
textInputAction: TextInputAction.next,
|
||||
decoration: _buildInputDecoration(isLogin ? 'Email or Username' : 'Email Address', LucideIcons.mail),
|
||||
),
|
||||
@@ -188,7 +189,7 @@ class _AuthScreenState extends ConsumerState<AuthScreen> with SingleTickerProvid
|
||||
TextField(
|
||||
controller: passwordController,
|
||||
obscureText: true,
|
||||
style: const TextStyle(fontWeight: FontWeight.w500),
|
||||
style: const TextStyle(fontWeight: FontWeight.w500, color: Colors.black87),
|
||||
textInputAction: TextInputAction.done,
|
||||
onSubmitted: (_) => submit(),
|
||||
decoration: _buildInputDecoration('Password', LucideIcons.lock),
|
||||
|
||||
Reference in New Issue
Block a user