mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 23:20:03 +03:00
105 lines
3.4 KiB
Dart
105 lines
3.4 KiB
Dart
/*
|
|
* Copyright (C) 2022 Yubico.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
|
|
import 'qr_scanner_scan_status.dart';
|
|
import 'qr_scanner_util.dart';
|
|
|
|
class QRScannerPermissionsUI extends StatelessWidget {
|
|
final ScanStatus status;
|
|
final Size screenSize;
|
|
final Function onPermissionRequest;
|
|
|
|
const QRScannerPermissionsUI(
|
|
{super.key,
|
|
required this.status,
|
|
required this.screenSize,
|
|
required this.onPermissionRequest});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final l10n = AppLocalizations.of(context)!;
|
|
final scannerAreaWidth = getScannerAreaWidth(screenSize);
|
|
|
|
return Stack(children: [
|
|
/// instruction text under the scanner area
|
|
Positioned.fromRect(
|
|
rect: Rect.fromCenter(
|
|
center: Offset(screenSize.width / 2,
|
|
screenSize.height - scannerAreaWidth / 2.0 + 8.0),
|
|
width: screenSize.width,
|
|
height: screenSize.height),
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 36),
|
|
child: Text(
|
|
l10n.p_need_camera_permission,
|
|
style: const TextStyle(color: Colors.white),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
)),
|
|
|
|
/// button for manual entry
|
|
Positioned.fromRect(
|
|
rect: Rect.fromCenter(
|
|
center: Offset(screenSize.width / 2, screenSize.height),
|
|
width: screenSize.width,
|
|
height: screenSize.height),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
children: [
|
|
Column(
|
|
children: [
|
|
Text(
|
|
l10n.q_have_account_info,
|
|
textScaleFactor: 0.7,
|
|
style: const TextStyle(color: Colors.white),
|
|
),
|
|
OutlinedButton(
|
|
onPressed: () {
|
|
Navigator.of(context).pop('');
|
|
},
|
|
child: Text(
|
|
l10n.l_enter_manually,
|
|
style: const TextStyle(color: Colors.white),
|
|
)),
|
|
],
|
|
),
|
|
Column(
|
|
children: [
|
|
Text(
|
|
l10n.q_want_to_scan,
|
|
textScaleFactor: 0.7,
|
|
style: const TextStyle(color: Colors.white),
|
|
),
|
|
OutlinedButton(
|
|
onPressed: () {
|
|
onPermissionRequest();
|
|
},
|
|
child: Text(
|
|
l10n.l_review_permissions,
|
|
style: const TextStyle(color: Colors.white),
|
|
)),
|
|
],
|
|
)
|
|
]),
|
|
),
|
|
]);
|
|
}
|
|
}
|