Skip to content

Commit

Permalink
feat: update kyc camera resolution (#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinenerio authored Nov 29, 2024
1 parent 04c56e8 commit 7ccc115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ class _BasicInformationScreenState extends State<BasicInformationScreen> {
dob != null ? DateFormat('dd/MM/yyyy').format(dob) : '';
_idType = user?.documentType?.toDocumentType();
_idNumberController.text = user?.documentNumber ?? '';
_isShareData = user?.firstName?.isNotEmpty ?? false;
}

Future<void> _handleSubmitted() async {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class _KycCameraScreenState extends State<KycCameraScreen> {
_controller = FaceCameraController(
autoCapture: false,
defaultCameraLens: CameraLens.front,
imageResolution: ImageResolution.high,
onCapture: (image) {
setState(() => _capturedImage = image);
},
Expand Down

0 comments on commit 7ccc115

Please sign in to comment.