You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.9 KiB
69 lines
1.9 KiB
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
import 'package:aku_new_community/base/base_style.dart';
|
|
import 'package:aku_new_community/const/resource.dart';
|
|
import 'package:aku_new_community/widget/picker/bee_image_picker.dart';
|
|
|
|
class IdentifyCardPicker extends StatefulWidget {
|
|
static Widget front(Function(File? file) onChange) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
'上传身份证正面'.text.size(28.sp).color(ktextPrimary).make(),
|
|
24.w.heightBox,
|
|
IdentifyCardPicker(
|
|
onChange: onChange,
|
|
path: R.ASSETS_STATIC_ID_CARD_FRONT_PNG,
|
|
)
|
|
],
|
|
);
|
|
}
|
|
|
|
static Widget back(Function(File? file) onChange) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
'上传身份证背面'.text.size(28.sp).color(ktextPrimary).make(),
|
|
24.w.heightBox,
|
|
IdentifyCardPicker(
|
|
onChange: onChange, path: R.ASSETS_STATIC_ID_CARD_BACK_PNG)
|
|
],
|
|
);
|
|
}
|
|
|
|
final Function(File? file) onChange;
|
|
final String path;
|
|
|
|
IdentifyCardPicker({Key? key, required this.onChange, required this.path})
|
|
: super(key: key);
|
|
|
|
@override
|
|
_IdentifyCardPickerState createState() => _IdentifyCardPickerState();
|
|
}
|
|
|
|
class _IdentifyCardPickerState extends State<IdentifyCardPicker> {
|
|
File? _file;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GestureDetector(
|
|
onTap: () async {
|
|
_file = await BeeImagePicker.pick(title: '选择身份证照片');
|
|
if (_file != null) {
|
|
widget.onChange(_file);
|
|
}
|
|
},
|
|
child: Container(
|
|
width: 350.w,
|
|
height: 220.w,
|
|
child: _file != null ? Image.file(_file!) : Image.asset(widget.path),
|
|
),
|
|
);
|
|
}
|
|
}
|