2022-03-22 17:16:52 +03:00
|
|
|
import 'dart:convert';
|
2022-04-14 10:08:33 +03:00
|
|
|
import 'dart:math';
|
2022-01-28 19:05:05 +03:00
|
|
|
|
2021-11-22 11:49:52 +03:00
|
|
|
import 'package:flutter/material.dart';
|
2022-01-28 19:05:05 +03:00
|
|
|
import 'package:flutter/services.dart';
|
2021-11-22 11:49:52 +03:00
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
2022-04-05 14:02:11 +03:00
|
|
|
import 'package:logging/logging.dart';
|
2022-05-03 12:24:25 +03:00
|
|
|
import 'package:yubico_authenticator/app/logging.dart';
|
2021-11-22 11:49:52 +03:00
|
|
|
|
2022-03-25 17:43:32 +03:00
|
|
|
import '../../app/message.dart';
|
2021-11-22 11:49:52 +03:00
|
|
|
import '../../app/models.dart';
|
2022-04-14 10:08:33 +03:00
|
|
|
import '../../app/state.dart';
|
2022-06-13 17:45:26 +03:00
|
|
|
import '../../desktop/models.dart';
|
2022-03-23 12:46:35 +03:00
|
|
|
import '../../widgets/file_drop_target.dart';
|
2022-03-31 12:50:40 +03:00
|
|
|
import '../../widgets/responsive_dialog.dart';
|
2022-03-15 20:04:26 +03:00
|
|
|
import '../models.dart';
|
2021-12-02 16:20:05 +03:00
|
|
|
import '../state.dart';
|
2022-01-31 13:02:34 +03:00
|
|
|
import 'utils.dart';
|
2021-11-22 11:49:52 +03:00
|
|
|
|
2022-04-05 14:02:11 +03:00
|
|
|
final _log = Logger('oath.view.add_account_page');
|
|
|
|
|
2022-01-28 19:05:05 +03:00
|
|
|
final _secretFormatterPattern =
|
|
|
|
RegExp('[abcdefghijklmnopqrstuvwxyz234567 ]', caseSensitive: false);
|
|
|
|
|
2022-02-11 16:56:35 +03:00
|
|
|
enum _QrScanState { none, scanning, success, failed }
|
|
|
|
|
2022-03-15 20:04:26 +03:00
|
|
|
class OathAddAccountPage extends ConsumerStatefulWidget {
|
2022-03-28 13:58:45 +03:00
|
|
|
final DevicePath devicePath;
|
2022-05-25 19:25:21 +03:00
|
|
|
final OathState state;
|
2022-04-26 17:05:59 +03:00
|
|
|
final bool openQrScanner;
|
2022-05-25 19:25:21 +03:00
|
|
|
const OathAddAccountPage(this.devicePath, this.state,
|
2022-05-12 10:56:55 +03:00
|
|
|
{super.key, required this.openQrScanner});
|
2022-01-28 19:05:05 +03:00
|
|
|
|
2021-12-02 16:20:05 +03:00
|
|
|
@override
|
2022-03-15 20:04:26 +03:00
|
|
|
ConsumerState<ConsumerStatefulWidget> createState() =>
|
|
|
|
_OathAddAccountPageState();
|
2021-12-02 16:20:05 +03:00
|
|
|
}
|
|
|
|
|
2022-03-15 20:04:26 +03:00
|
|
|
class _OathAddAccountPageState extends ConsumerState<OathAddAccountPage> {
|
2022-02-11 16:56:35 +03:00
|
|
|
final _issuerController = TextEditingController();
|
|
|
|
final _accountController = TextEditingController();
|
|
|
|
final _secretController = TextEditingController();
|
|
|
|
final _periodController = TextEditingController(text: '$defaultPeriod');
|
2021-12-02 16:20:05 +03:00
|
|
|
bool _touch = false;
|
2022-01-28 19:05:05 +03:00
|
|
|
OathType _oathType = defaultOathType;
|
|
|
|
HashAlgorithm _hashAlgorithm = defaultHashAlgorithm;
|
|
|
|
int _digits = defaultDigits;
|
2022-02-01 10:24:29 +03:00
|
|
|
bool _validateSecretLength = false;
|
2022-02-11 16:56:35 +03:00
|
|
|
_QrScanState _qrState = _QrScanState.none;
|
2022-04-04 15:38:12 +03:00
|
|
|
bool _isObscure = true;
|
2022-04-05 13:28:31 +03:00
|
|
|
List<int> _periodValues = [20, 30, 45, 60];
|
|
|
|
List<int> _digitsValues = [6, 8];
|
2022-02-11 16:56:35 +03:00
|
|
|
|
|
|
|
_scanQrCode(QrScanner qrScanner) async {
|
|
|
|
try {
|
|
|
|
setState(() {
|
|
|
|
_qrState = _QrScanState.scanning;
|
|
|
|
});
|
2022-03-29 14:57:08 +03:00
|
|
|
final otpauth = await qrScanner.scanQr();
|
2022-06-13 17:45:26 +03:00
|
|
|
if (otpauth == null) {
|
|
|
|
if (!mounted) return;
|
|
|
|
showMessage(context, 'No QR code found');
|
|
|
|
setState(() {
|
|
|
|
_qrState = _QrScanState.failed;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
final data = CredentialData.fromUri(Uri.parse(otpauth));
|
|
|
|
_loadCredentialData(data);
|
|
|
|
}
|
2022-02-11 16:56:35 +03:00
|
|
|
} catch (e) {
|
2022-06-13 17:45:26 +03:00
|
|
|
final String errorMessage;
|
|
|
|
// TODO: Make this cleaner than importing desktop specific RpcError.
|
|
|
|
if (e is RpcError) {
|
|
|
|
errorMessage = e.message;
|
|
|
|
} else {
|
|
|
|
errorMessage = e.toString();
|
|
|
|
}
|
|
|
|
showMessage(
|
|
|
|
context,
|
|
|
|
'Failed reading QR code: $errorMessage',
|
|
|
|
duration: const Duration(seconds: 4),
|
|
|
|
);
|
2022-02-11 16:56:35 +03:00
|
|
|
setState(() {
|
|
|
|
_qrState = _QrScanState.failed;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-05 13:28:31 +03:00
|
|
|
_loadCredentialData(CredentialData data) {
|
|
|
|
setState(() {
|
|
|
|
_issuerController.text = data.issuer ?? '';
|
|
|
|
_accountController.text = data.name;
|
|
|
|
_secretController.text = data.secret;
|
|
|
|
_oathType = data.oathType;
|
|
|
|
_hashAlgorithm = data.hashAlgorithm;
|
|
|
|
_periodValues = [data.period];
|
|
|
|
_periodController.text = '${data.period}';
|
|
|
|
_digitsValues = [data.digits];
|
|
|
|
_digits = data.digits;
|
|
|
|
_isObscure = true;
|
|
|
|
_qrState = _QrScanState.success;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-26 17:05:59 +03:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
|
|
|
|
final qrScanner = ref.read(qrScannerProvider);
|
|
|
|
if (qrScanner != null && widget.openQrScanner) {
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
_scanQrCode(qrScanner);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-22 11:49:52 +03:00
|
|
|
@override
|
2021-12-02 16:20:05 +03:00
|
|
|
Widget build(BuildContext context) {
|
2022-02-11 16:56:35 +03:00
|
|
|
final period = int.tryParse(_periodController.text) ?? -1;
|
2022-01-31 13:02:34 +03:00
|
|
|
final remaining = getRemainingKeySpace(
|
|
|
|
oathType: _oathType,
|
2022-02-11 16:56:35 +03:00
|
|
|
period: period,
|
|
|
|
issuer: _issuerController.text,
|
|
|
|
name: _accountController.text,
|
2022-01-31 13:02:34 +03:00
|
|
|
);
|
|
|
|
final issuerRemaining = remaining.first;
|
|
|
|
final nameRemaining = remaining.second;
|
2021-11-22 11:49:52 +03:00
|
|
|
|
2022-02-11 16:56:35 +03:00
|
|
|
final secret = _secretController.text.replaceAll(' ', '');
|
|
|
|
final secretLengthValid = secret.length * 5 % 8 < 5;
|
2022-04-01 16:05:26 +03:00
|
|
|
final isValid = _accountController.text.isNotEmpty &&
|
|
|
|
secret.isNotEmpty &&
|
|
|
|
issuerRemaining >= -1 &&
|
|
|
|
nameRemaining >= 0 &&
|
|
|
|
period > 0;
|
2022-02-11 16:56:35 +03:00
|
|
|
|
|
|
|
final qrScanner = ref.watch(qrScannerProvider);
|
2022-01-28 19:05:05 +03:00
|
|
|
|
2022-06-09 13:30:19 +03:00
|
|
|
void submit() async {
|
|
|
|
if (secretLengthValid) {
|
|
|
|
final issuer = _issuerController.text;
|
|
|
|
|
|
|
|
final cred = CredentialData(
|
|
|
|
issuer: issuer.isEmpty ? null : issuer,
|
|
|
|
name: _accountController.text,
|
|
|
|
secret: secret,
|
|
|
|
oathType: _oathType,
|
|
|
|
hashAlgorithm: _hashAlgorithm,
|
|
|
|
digits: _digits,
|
|
|
|
period: period,
|
|
|
|
);
|
|
|
|
|
|
|
|
try {
|
|
|
|
await ref
|
|
|
|
.read(credentialListProvider(widget.devicePath).notifier)
|
|
|
|
.addAccount(cred.toUri(), requireTouch: _touch);
|
|
|
|
if (!mounted) return;
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
showMessage(context, 'Account added');
|
|
|
|
} catch (e) {
|
|
|
|
_log.error('Failed to add account', e);
|
2022-06-13 17:45:26 +03:00
|
|
|
final String errorMessage;
|
|
|
|
// TODO: Make this cleaner than importing desktop specific RpcError.
|
|
|
|
if (e is RpcError) {
|
|
|
|
errorMessage = e.message;
|
|
|
|
} else {
|
|
|
|
errorMessage = e.toString();
|
|
|
|
}
|
|
|
|
showMessage(
|
|
|
|
context,
|
|
|
|
'Failed adding account: $errorMessage',
|
|
|
|
duration: const Duration(seconds: 4),
|
|
|
|
);
|
2022-06-09 13:30:19 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
setState(() {
|
|
|
|
_validateSecretLength = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 20:04:26 +03:00
|
|
|
return ResponsiveDialog(
|
|
|
|
title: const Text('Add account'),
|
2022-05-12 09:34:51 +03:00
|
|
|
actions: [
|
|
|
|
TextButton(
|
2022-06-09 13:30:19 +03:00
|
|
|
onPressed: isValid ? submit : null,
|
2022-05-12 09:34:51 +03:00
|
|
|
child: const Text('Save', key: Key('save_btn')),
|
|
|
|
),
|
|
|
|
],
|
2022-03-23 12:46:35 +03:00
|
|
|
child: FileDropTarget(
|
|
|
|
onFileDropped: (fileData) async {
|
|
|
|
if (qrScanner != null) {
|
|
|
|
final b64Image = base64Encode(fileData);
|
|
|
|
final otpauth = await qrScanner.scanQr(b64Image);
|
2022-06-13 17:45:26 +03:00
|
|
|
if (otpauth == null) {
|
|
|
|
if (!mounted) return;
|
|
|
|
showMessage(context, 'No QR code found');
|
|
|
|
} else {
|
|
|
|
final data = CredentialData.fromUri(Uri.parse(otpauth));
|
|
|
|
_loadCredentialData(data);
|
|
|
|
}
|
2022-03-23 12:46:35 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
child: Column(
|
2022-03-22 17:16:52 +03:00
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
TextField(
|
2022-04-14 10:08:33 +03:00
|
|
|
key: const Key('issuer'),
|
2022-03-22 17:16:52 +03:00
|
|
|
controller: _issuerController,
|
|
|
|
autofocus: true,
|
|
|
|
enabled: issuerRemaining > 0,
|
|
|
|
maxLength: max(issuerRemaining, 1),
|
|
|
|
decoration: const InputDecoration(
|
|
|
|
border: OutlineInputBorder(),
|
|
|
|
labelText: 'Issuer (optional)',
|
|
|
|
helperText: '', // Prevents dialog resizing when enabled = false
|
2022-06-08 17:17:46 +03:00
|
|
|
prefixIcon: Icon(Icons.business_outlined),
|
2022-03-15 20:04:26 +03:00
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
onChanged: (value) {
|
|
|
|
setState(() {
|
|
|
|
// Update maxlengths
|
|
|
|
});
|
|
|
|
},
|
2022-06-09 13:30:19 +03:00
|
|
|
onSubmitted: (_) {
|
|
|
|
if (isValid) submit();
|
|
|
|
},
|
2022-03-15 20:04:26 +03:00
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
TextField(
|
2022-04-14 10:08:33 +03:00
|
|
|
key: const Key('name'),
|
2022-03-22 17:16:52 +03:00
|
|
|
controller: _accountController,
|
2022-04-01 16:05:26 +03:00
|
|
|
maxLength: max(nameRemaining, 1),
|
2022-03-22 17:16:52 +03:00
|
|
|
decoration: const InputDecoration(
|
|
|
|
border: OutlineInputBorder(),
|
|
|
|
labelText: 'Account name',
|
|
|
|
helperText: '', // Prevents dialog resizing when enabled = false
|
2022-06-13 09:16:09 +03:00
|
|
|
prefixIcon: Icon(Icons.person_outline),
|
2021-12-02 16:20:05 +03:00
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
onChanged: (value) {
|
|
|
|
setState(() {
|
|
|
|
// Update maxlengths
|
|
|
|
});
|
|
|
|
},
|
2022-06-09 13:30:19 +03:00
|
|
|
onSubmitted: (_) {
|
|
|
|
if (isValid) submit();
|
|
|
|
},
|
2022-03-22 17:16:52 +03:00
|
|
|
),
|
|
|
|
TextField(
|
2022-04-14 10:08:33 +03:00
|
|
|
key: const Key('secret'),
|
2022-03-22 17:16:52 +03:00
|
|
|
controller: _secretController,
|
2022-04-04 15:38:12 +03:00
|
|
|
obscureText: _isObscure,
|
2022-03-22 17:16:52 +03:00
|
|
|
inputFormatters: <TextInputFormatter>[
|
|
|
|
FilteringTextInputFormatter.allow(_secretFormatterPattern)
|
|
|
|
],
|
|
|
|
decoration: InputDecoration(
|
2022-04-04 13:09:34 +03:00
|
|
|
suffixIcon: IconButton(
|
|
|
|
icon: Icon(
|
2022-04-04 15:38:12 +03:00
|
|
|
_isObscure ? Icons.visibility : Icons.visibility_off,
|
2022-04-04 13:09:34 +03:00
|
|
|
),
|
|
|
|
onPressed: () {
|
|
|
|
setState(() {
|
2022-04-04 15:38:12 +03:00
|
|
|
_isObscure = !_isObscure;
|
2022-04-04 13:09:34 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
border: const OutlineInputBorder(),
|
2022-06-08 17:17:46 +03:00
|
|
|
prefixIcon: const Icon(Icons.key_outlined),
|
2022-03-22 17:16:52 +03:00
|
|
|
labelText: 'Secret key',
|
|
|
|
errorText: _validateSecretLength && !secretLengthValid
|
|
|
|
? 'Invalid length'
|
|
|
|
: null),
|
2022-04-04 13:17:14 +03:00
|
|
|
readOnly: _qrState == _QrScanState.success,
|
2022-03-22 17:16:52 +03:00
|
|
|
onChanged: (value) {
|
|
|
|
setState(() {
|
|
|
|
_validateSecretLength = false;
|
|
|
|
});
|
|
|
|
},
|
2022-06-09 13:30:19 +03:00
|
|
|
onSubmitted: (_) {
|
|
|
|
if (isValid) submit();
|
|
|
|
},
|
2022-03-22 17:16:52 +03:00
|
|
|
),
|
|
|
|
if (qrScanner != null)
|
|
|
|
Padding(
|
2022-06-08 17:17:46 +03:00
|
|
|
padding: const EdgeInsets.only(top: 16.0),
|
2022-03-22 17:16:52 +03:00
|
|
|
child: Row(
|
|
|
|
children: [
|
2022-06-08 17:17:46 +03:00
|
|
|
if (_qrState != _QrScanState.scanning) ...[
|
|
|
|
OutlinedButton.icon(
|
|
|
|
style: OutlinedButton.styleFrom(
|
|
|
|
fixedSize: const Size.fromWidth(132)),
|
|
|
|
onPressed: () {
|
|
|
|
_scanQrCode(qrScanner);
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.qr_code),
|
|
|
|
label: const Text('Scan QR code'),
|
|
|
|
)
|
|
|
|
] else ...[
|
|
|
|
OutlinedButton(
|
|
|
|
style: OutlinedButton.styleFrom(
|
|
|
|
fixedSize: const Size.fromWidth(132)),
|
|
|
|
onPressed: null,
|
|
|
|
child: const SizedBox.square(
|
|
|
|
dimension: 16.0,
|
|
|
|
child: CircularProgressIndicator()),
|
|
|
|
)
|
|
|
|
]
|
2022-03-22 17:16:52 +03:00
|
|
|
],
|
2022-01-28 19:05:05 +03:00
|
|
|
),
|
2021-12-02 16:20:05 +03:00
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
const Divider(),
|
|
|
|
Wrap(
|
|
|
|
crossAxisAlignment: WrapCrossAlignment.center,
|
|
|
|
spacing: 4.0,
|
|
|
|
runSpacing: 8.0,
|
|
|
|
children: [
|
2022-05-25 19:25:21 +03:00
|
|
|
if (widget.state.version.isAtLeast(4, 2))
|
|
|
|
FilterChip(
|
|
|
|
label: const Text('Require touch'),
|
|
|
|
selected: _touch,
|
|
|
|
onSelected: (value) {
|
|
|
|
setState(() {
|
|
|
|
_touch = value;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
Chip(
|
2022-05-20 12:10:49 +03:00
|
|
|
backgroundColor: ChipTheme.of(context).selectedColor,
|
2022-03-22 17:16:52 +03:00
|
|
|
label: DropdownButtonHideUnderline(
|
|
|
|
child: DropdownButton<OathType>(
|
|
|
|
value: _oathType,
|
|
|
|
isDense: true,
|
|
|
|
underline: null,
|
|
|
|
items: OathType.values
|
|
|
|
.map((e) => DropdownMenuItem(
|
|
|
|
value: e,
|
2022-06-07 15:12:41 +03:00
|
|
|
child: Text(e.displayName),
|
2022-03-22 17:16:52 +03:00
|
|
|
))
|
|
|
|
.toList(),
|
|
|
|
onChanged: _qrState != _QrScanState.success
|
|
|
|
? (type) {
|
|
|
|
setState(() {
|
|
|
|
_oathType = type ?? OathType.totp;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
: null,
|
|
|
|
),
|
2022-02-11 16:56:35 +03:00
|
|
|
),
|
|
|
|
),
|
2022-03-15 20:04:26 +03:00
|
|
|
Chip(
|
2022-05-20 12:10:49 +03:00
|
|
|
backgroundColor: ChipTheme.of(context).selectedColor,
|
2022-03-15 20:04:26 +03:00
|
|
|
label: DropdownButtonHideUnderline(
|
2022-03-22 17:16:52 +03:00
|
|
|
child: DropdownButton<HashAlgorithm>(
|
|
|
|
value: _hashAlgorithm,
|
2022-03-15 20:04:26 +03:00
|
|
|
isDense: true,
|
|
|
|
underline: null,
|
2022-03-22 17:16:52 +03:00
|
|
|
items: HashAlgorithm.values
|
2022-05-25 19:25:21 +03:00
|
|
|
.where((alg) =>
|
|
|
|
alg != HashAlgorithm.sha512 ||
|
|
|
|
widget.state.version.isAtLeast(4, 3, 1))
|
2022-03-15 20:04:26 +03:00
|
|
|
.map((e) => DropdownMenuItem(
|
|
|
|
value: e,
|
2022-06-07 15:12:41 +03:00
|
|
|
child: Text(e.displayName),
|
2022-03-15 20:04:26 +03:00
|
|
|
))
|
|
|
|
.toList(),
|
|
|
|
onChanged: _qrState != _QrScanState.success
|
2022-03-22 17:16:52 +03:00
|
|
|
? (type) {
|
2022-03-15 20:04:26 +03:00
|
|
|
setState(() {
|
2022-03-22 17:16:52 +03:00
|
|
|
_hashAlgorithm = type ?? HashAlgorithm.sha1;
|
2022-03-15 20:04:26 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
: null,
|
2022-01-28 19:05:05 +03:00
|
|
|
),
|
2022-03-15 20:04:26 +03:00
|
|
|
),
|
2022-01-28 19:05:05 +03:00
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
if (_oathType == OathType.totp)
|
|
|
|
Chip(
|
2022-05-20 12:10:49 +03:00
|
|
|
backgroundColor: ChipTheme.of(context).selectedColor,
|
2022-03-22 17:16:52 +03:00
|
|
|
label: DropdownButtonHideUnderline(
|
|
|
|
child: DropdownButton<int>(
|
|
|
|
value: int.tryParse(_periodController.text) ??
|
|
|
|
defaultPeriod,
|
|
|
|
isDense: true,
|
|
|
|
underline: null,
|
2022-04-05 13:28:31 +03:00
|
|
|
items: _periodValues
|
2022-03-22 17:16:52 +03:00
|
|
|
.map((e) => DropdownMenuItem(
|
|
|
|
value: e,
|
|
|
|
child: Text('$e sec'),
|
|
|
|
))
|
|
|
|
.toList(),
|
|
|
|
onChanged: _qrState != _QrScanState.success
|
|
|
|
? (period) {
|
|
|
|
setState(() {
|
|
|
|
_periodController.text =
|
|
|
|
'${period ?? defaultPeriod}';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Chip(
|
2022-05-20 12:10:49 +03:00
|
|
|
backgroundColor: ChipTheme.of(context).selectedColor,
|
2022-03-22 17:16:52 +03:00
|
|
|
label: DropdownButtonHideUnderline(
|
|
|
|
child: DropdownButton<int>(
|
|
|
|
value: _digits,
|
|
|
|
isDense: true,
|
|
|
|
underline: null,
|
2022-04-05 13:28:31 +03:00
|
|
|
items: _digitsValues
|
2022-03-22 17:16:52 +03:00
|
|
|
.map((e) => DropdownMenuItem(
|
|
|
|
value: e,
|
|
|
|
child: Text('$e digits'),
|
|
|
|
))
|
|
|
|
.toList(),
|
|
|
|
onChanged: _qrState != _QrScanState.success
|
|
|
|
? (digits) {
|
|
|
|
setState(() {
|
|
|
|
_digits = digits ?? defaultDigits;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
: null,
|
|
|
|
),
|
2022-03-15 20:04:26 +03:00
|
|
|
),
|
2022-01-28 19:05:05 +03:00
|
|
|
),
|
2022-03-22 17:16:52 +03:00
|
|
|
],
|
|
|
|
),
|
|
|
|
]
|
|
|
|
.map((e) => Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
|
|
child: e,
|
|
|
|
))
|
|
|
|
.toList(),
|
2022-03-23 12:46:35 +03:00
|
|
|
),
|
|
|
|
),
|
2022-01-28 19:05:05 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|