| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  | import 'package:flutter/material.dart'; | 
					
						
							|  |  |  | import 'dart:io'; | 
					
						
							|  |  |  | import 'package:flutter/services.dart'; | 
					
						
							|  |  |  | import 'package:qhd_prevention/pages/my_appbar.dart'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import '../../tools/tools.dart'; | 
					
						
							|  |  |  | import 'mine_sign_page.dart'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FirstSignPage extends StatefulWidget { | 
					
						
							|  |  |  |   const FirstSignPage({super.key}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   @override | 
					
						
							|  |  |  |   State<FirstSignPage> createState() => _SignatureUpdatePageState(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _SignatureUpdatePageState extends State<FirstSignPage> { | 
					
						
							|  |  |  |   String imagePath=""; | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |   @override | 
					
						
							|  |  |  |   Widget build(BuildContext context) { | 
					
						
							|  |  |  |     return Scaffold( | 
					
						
							|  |  |  |       appBar: MyAppbar(title: "更新签字信息"), | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |       body: | 
					
						
							|  |  |  |       Container( | 
					
						
							|  |  |  |         margin: EdgeInsets.all(16), | 
					
						
							|  |  |  |         child: Column( | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |           crossAxisAlignment: CrossAxisAlignment.start, | 
					
						
							|  |  |  |           children: [ | 
					
						
							|  |  |  |             Row( | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |               mainAxisAlignment: MainAxisAlignment.spaceBetween, | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |               children: [ | 
					
						
							|  |  |  |                 GestureDetector( | 
					
						
							|  |  |  |                   onTap: () { | 
					
						
							|  |  |  |                     pushPage(MineSignPage(), context); | 
					
						
							|  |  |  |                   }, | 
					
						
							|  |  |  |                   child:  Text("用户",style: TextStyle(color: Colors.black,fontSize: 16)), | 
					
						
							|  |  |  |                 ), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |                 _buildConfirmButton(), | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |               ], | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             const SizedBox(height: 8), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |             Row( | 
					
						
							|  |  |  |               children: [ | 
					
						
							|  |  |  |                 if (imagePath.isNotEmpty) | 
					
						
							|  |  |  |                   Text('签字照片:', | 
					
						
							|  |  |  |                     style: TextStyle( | 
					
						
							|  |  |  |                       fontSize: 14, | 
					
						
							|  |  |  |                       fontWeight: FontWeight.bold, | 
					
						
							|  |  |  |                       color: Colors.grey, | 
					
						
							|  |  |  |                     ), | 
					
						
							|  |  |  |                   ), | 
					
						
							|  |  |  |                 const SizedBox(width: 15), | 
					
						
							|  |  |  |                 if (imagePath.isNotEmpty) | 
					
						
							|  |  |  |                   Image.file(File(imagePath),width: 230,height: 150,fit: BoxFit.cover,), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |               ], | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |             ), | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |             const SizedBox(height: 8), | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |             // 确认按钮
 | 
					
						
							|  |  |  |             // const Spacer(),
 | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |             _buildTrueButton(), | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |           ], | 
					
						
							|  |  |  |         ), | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |       ), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Widget _buildConfirmButton() { | 
					
						
							|  |  |  |     return SizedBox( | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |       width: 80, | 
					
						
							|  |  |  |       height: 30, | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |       child: ElevatedButton( | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |         onPressed: () async { | 
					
						
							|  |  |  |           final path = await Navigator.push( | 
					
						
							|  |  |  |             context, | 
					
						
							|  |  |  |             MaterialPageRoute(builder: (context) => MineSignPage()), | 
					
						
							|  |  |  |           ); | 
					
						
							|  |  |  |           // 更新状态(当子页面关闭时)
 | 
					
						
							|  |  |  |           setState(() { | 
					
						
							|  |  |  |             imagePath = path ?? ''; | 
					
						
							|  |  |  |           }); | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         style: ElevatedButton.styleFrom( | 
					
						
							|  |  |  |           backgroundColor: const Color(0xFF4285F4), | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |           padding: const EdgeInsets.symmetric(vertical: 5), | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |           shape: RoundedRectangleBorder( | 
					
						
							|  |  |  |             borderRadius: BorderRadius.circular(8), | 
					
						
							|  |  |  |           ), | 
					
						
							|  |  |  |         ), | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  |         child: Text( | 
					
						
							|  |  |  |           '手写签字', | 
					
						
							|  |  |  |           style: TextStyle(fontSize: 12, color: Colors.white), | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  |         ), | 
					
						
							|  |  |  |       ), | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2025-07-16 08:38:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Widget _buildTrueButton() { | 
					
						
							|  |  |  |   return Center( | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     child: ElevatedButton( | 
					
						
							|  |  |  |             onPressed: () { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             style: ElevatedButton.styleFrom( | 
					
						
							|  |  |  |               backgroundColor: const Color(0xFF4285F4), | 
					
						
							|  |  |  |               padding: const EdgeInsets.symmetric(vertical:5,horizontal: 80), | 
					
						
							|  |  |  |               shape: RoundedRectangleBorder( | 
					
						
							|  |  |  |                 borderRadius: BorderRadius.circular(8), | 
					
						
							|  |  |  |               ), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             child: Text( | 
					
						
							|  |  |  |               '确认', | 
					
						
							|  |  |  |               style: TextStyle(fontSize: 14, color: Colors.white), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |           ), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-14 18:01:16 +08:00
										 |  |  | } |