create project

This commit is contained in:
2026-05-19 11:46:42 +08:00
commit dcdf1f60b1
60 changed files with 9309 additions and 0 deletions

View File

@@ -0,0 +1,254 @@
import 'dart:ui';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../../providers/auth_provider.dart';
import '../../theme/colors.dart';
class RegisterScreen extends ConsumerStatefulWidget {
const RegisterScreen({super.key});
@override
ConsumerState<RegisterScreen> createState() => _RegisterScreenState();
}
class _RegisterScreenState extends ConsumerState<RegisterScreen> {
final _nicknameController = TextEditingController();
final _phoneController = TextEditingController();
final _passwordController = TextEditingController();
final _formKey = GlobalKey<FormState>();
@override
void dispose() {
_nicknameController.dispose();
_phoneController.dispose();
_passwordController.dispose();
super.dispose();
}
String? _validateNickname(String? value) {
if (value == null || value.isEmpty) {
return '请输入昵称';
}
if (value.length > 20) {
return '昵称最多20个字符';
}
return null;
}
String? _validatePhone(String? value) {
if (value == null || value.isEmpty) {
return '请输入手机号';
}
if (value.length != 11) {
return '手机号必须为11位';
}
return null;
}
String? _validatePassword(String? value) {
if (value == null || value.isEmpty) {
return '请输入密码';
}
if (value.length < 6) {
return '密码至少6位';
}
return null;
}
Future<void> _handleRegister() async {
if (!_formKey.currentState!.validate()) return;
final phone = _phoneController.text;
final password = _passwordController.text;
final nickname = _nicknameController.text;
await ref.read(authProvider.notifier).register(phone, password, nickname);
final authState = ref.read(authProvider);
if (authState.isLoggedIn && mounted) {
Navigator.pop(context);
}
}
@override
Widget build(BuildContext context) {
final authState = ref.watch(authProvider);
final isLoading = authState.isLoading;
return Scaffold(
body: Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [
Color(0xFFFF6B35),
Color(0xFFFF9F5B),
],
),
),
child: SafeArea(
child: Center(
child: SingleChildScrollView(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: Form(
key: _formKey,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text(
'创建你的账号',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
const SizedBox(height: 8),
const Text(
'加入家庭记账,轻松管理财务',
style: TextStyle(
fontSize: 14,
color: Colors.white70,
),
),
const SizedBox(height: 48),
_buildGlassInput(
child: TextFormField(
controller: _nicknameController,
style: const TextStyle(color: AppColors.textPrimary),
decoration: const InputDecoration(
hintText: '请输入昵称',
hintStyle: TextStyle(color: AppColors.textSecondary),
border: InputBorder.none,
prefixIcon: Icon(Icons.person_outline, color: AppColors.brand),
),
validator: _validateNickname,
),
),
const SizedBox(height: 16),
_buildGlassInput(
child: TextFormField(
controller: _phoneController,
keyboardType: TextInputType.phone,
style: const TextStyle(color: AppColors.textPrimary),
decoration: const InputDecoration(
hintText: '请输入手机号',
hintStyle: TextStyle(color: AppColors.textSecondary),
border: InputBorder.none,
prefixIcon: Icon(Icons.phone_android, color: AppColors.brand),
),
inputFormatters: [
FilteringTextInputFormatter.digitsOnly,
LengthLimitingTextInputFormatter(11),
],
validator: _validatePhone,
),
),
const SizedBox(height: 16),
_buildGlassInput(
child: TextFormField(
controller: _passwordController,
obscureText: true,
style: const TextStyle(color: AppColors.textPrimary),
decoration: const InputDecoration(
hintText: '请输入密码',
hintStyle: TextStyle(color: AppColors.textSecondary),
border: InputBorder.none,
prefixIcon: Icon(Icons.lock_outline, color: AppColors.brand),
),
validator: _validatePassword,
),
),
const SizedBox(height: 32),
SizedBox(
width: double.infinity,
height: 56,
child: ElevatedButton(
onPressed: isLoading ? null : _handleRegister,
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.brand,
foregroundColor: Colors.white,
disabledBackgroundColor: AppColors.brand.withOpacity(0.6),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
elevation: 0,
),
child: isLoading
? const Text(
'注册中...',
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
),
)
: const Text(
'注册',
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
),
),
if (authState.error != null) ...[
const SizedBox(height: 16),
Text(
authState.error!,
style: const TextStyle(
color: Colors.white,
fontSize: 14,
),
),
],
const SizedBox(height: 24),
GestureDetector(
onTap: () => Navigator.pop(context),
child: const Text(
'已有账号?立即登录',
style: TextStyle(
fontSize: 14,
color: Colors.white,
decoration: TextDecoration.underline,
),
),
),
],
),
),
),
),
),
),
);
}
Widget _buildGlassInput({required Widget child}) {
return Container(
decoration: BoxDecoration(
color: Colors.white.withOpacity(0.8),
borderRadius: BorderRadius.circular(14),
border: Border.all(color: Colors.white.withOpacity(0.8)),
boxShadow: [
BoxShadow(
color: AppColors.brand.withOpacity(0.06),
blurRadius: 32,
offset: const Offset(0, 8),
),
],
),
child: ClipRRect(
borderRadius: BorderRadius.circular(14),
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 30, sigmaY: 30),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
child: child,
),
),
),
);
}
}