86 lines
2.7 KiB
Dart
86 lines
2.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:recording_tool/app/router/app_navigator.dart';
|
|
import 'package:recording_tool/features/auth/view_model_auth/view_model_auth.dart';
|
|
import 'package:recording_tool/features/scan_qrcode/pages/page_scan_qrcode.dart';
|
|
import 'package:recording_tool/shared/widgets/widgets.dart';
|
|
|
|
class AuthPageWidget extends ConsumerStatefulWidget {
|
|
const AuthPageWidget({super.key});
|
|
|
|
@override
|
|
ConsumerState<AuthPageWidget> createState() => _AuthPageWidgetState();
|
|
}
|
|
|
|
class _AuthPageWidgetState extends ConsumerState<AuthPageWidget> {
|
|
late TextEditingController? _controller;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_controller = TextEditingController();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_controller?.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final authState = ref.watch(authProvider);
|
|
|
|
return Center(
|
|
child: Column(
|
|
children: [
|
|
SizedBox(height: 180.h),
|
|
Text('裁判工作台', style: TextStyle(fontSize: 50, color: Colors.black)),
|
|
SizedBox(height: 20.h),
|
|
Text('输入执裁口令', style: TextStyle(fontSize: 30, color: Colors.black)),
|
|
SizedBox(height: 20.h),
|
|
|
|
SizedBox(
|
|
width: 280.w,
|
|
height: 80.h,
|
|
child: AppTextField(initialValue: 'hhh', controller: _controller),
|
|
),
|
|
SizedBox(height: 20.h),
|
|
SizedBox(
|
|
width: 280.w,
|
|
height: 80.h,
|
|
child: AppButton(
|
|
label: '确定',
|
|
onPressed: () async {
|
|
final code = _controller?.text;
|
|
final success = await ref
|
|
.read(authProvider.notifier)
|
|
.auth(code ?? '');
|
|
if (!mounted) return;
|
|
if (success) {
|
|
AppNavigator.push(const ScanQrCodePage());
|
|
return;
|
|
}
|
|
final message = ref.read(authProvider).errorMessage;
|
|
if (message != null && message.isNotEmpty) {
|
|
AppToast.show(message);
|
|
}
|
|
// return;
|
|
// AppNavigator.push(
|
|
// const WebviewPage(
|
|
// url:
|
|
// 'http://192.168.1.64:5173/#/pages/h5/score-entry?eventId=10237&scheduleId=113716750536806400&playerId=74300708945531007',
|
|
// ),
|
|
// );
|
|
},
|
|
variant: AppButtonVariant.secondary,
|
|
isLoading: authState.isLoading,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|