mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-07-18 01:14:07 +00:00
168 lines
5.4 KiB
Dart
168 lines
5.4 KiB
Dart
import 'dart:io';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:qr_flutter/qr_flutter.dart';
|
|
import 'package:twonly/src/database/daos/contacts.dao.dart';
|
|
import 'package:twonly/src/database/twonly.db.dart';
|
|
import 'package:twonly/src/utils/avatars.dart';
|
|
import 'package:twonly/src/utils/misc.dart';
|
|
import 'package:twonly/src/utils/qr.utils.dart';
|
|
|
|
class ProfileQrCodeComp extends StatefulWidget {
|
|
const ProfileQrCodeComp({
|
|
this.size = 250,
|
|
this.showAvatar = true,
|
|
super.key,
|
|
});
|
|
|
|
final double size;
|
|
final bool showAvatar;
|
|
|
|
static Future<void> showSheet(
|
|
BuildContext context, {
|
|
Contact? contact,
|
|
bool openToVerify = false,
|
|
}) {
|
|
return showModalBottomSheet(
|
|
context: context,
|
|
isScrollControlled: true,
|
|
backgroundColor: Colors.transparent,
|
|
builder: (context) {
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
color: context.color.surface,
|
|
borderRadius: const BorderRadius.vertical(
|
|
top: Radius.circular(24),
|
|
),
|
|
),
|
|
padding: const EdgeInsets.symmetric(vertical: 24, horizontal: 20),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
const SizedBox(width: double.infinity),
|
|
Container(
|
|
width: 40,
|
|
height: 4,
|
|
decoration: BoxDecoration(
|
|
color: context.color.onSurface.withValues(alpha: 0.2),
|
|
borderRadius: BorderRadius.circular(2),
|
|
),
|
|
),
|
|
const SizedBox(height: 24),
|
|
Text(
|
|
openToVerify
|
|
? (contact != null
|
|
? context.lang.letUserScanQrCode(
|
|
getContactDisplayName(contact),
|
|
)
|
|
: context.lang.letFriendScanQrToVerify)
|
|
: (contact != null
|
|
? context.lang.letUserScanQrCode(
|
|
getContactDisplayName(contact),
|
|
)
|
|
: context.lang.addContactQrSheetSubtext),
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: context.color.onSurface.withValues(alpha: 0.6),
|
|
),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
const SizedBox(height: 24),
|
|
const ProfileQrCodeComp(),
|
|
const SizedBox(height: 34),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
@override
|
|
State<ProfileQrCodeComp> createState() => _ProfileQrCodeCompState();
|
|
}
|
|
|
|
class _ProfileQrCodeCompState extends State<ProfileQrCodeComp> {
|
|
String? _qrCode;
|
|
Uint8List? _userAvatar;
|
|
bool _isLoading = true;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_loadData();
|
|
}
|
|
|
|
Future<void> _loadData() async {
|
|
final qr = await QrCodeUtils.publicProfileLink();
|
|
Uint8List? avatarBytes;
|
|
if (widget.showAvatar) {
|
|
final avatarPath = await getUserAvatar();
|
|
if (avatarPath != null) {
|
|
avatarBytes = await File(avatarPath).readAsBytes();
|
|
} else {
|
|
final data = await rootBundle.load('assets/images/default_avatar.png');
|
|
avatarBytes = data.buffer.asUint8List();
|
|
}
|
|
}
|
|
if (mounted) {
|
|
setState(() {
|
|
_qrCode = qr;
|
|
_userAvatar = avatarBytes;
|
|
_isLoading = false;
|
|
});
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final loaded = !_isLoading && _qrCode != null;
|
|
return SizedBox(
|
|
width: widget.size,
|
|
height: widget.size,
|
|
child: AnimatedSwitcher(
|
|
duration: const Duration(milliseconds: 150),
|
|
child: loaded
|
|
? Container(
|
|
key: const ValueKey('qr_code_container'),
|
|
decoration: BoxDecoration(
|
|
color: context.color.primary,
|
|
borderRadius: BorderRadius.circular(12),
|
|
boxShadow: const [
|
|
BoxShadow(
|
|
color: Colors.black26,
|
|
blurRadius: 3,
|
|
offset: Offset(0, 2),
|
|
),
|
|
],
|
|
),
|
|
child: QrImageView.withQr(
|
|
qr: QrCode.fromData(
|
|
data: _qrCode!,
|
|
errorCorrectLevel: QrErrorCorrectLevel.M,
|
|
),
|
|
eyeStyle: QrEyeStyle(
|
|
color: isDarkMode(context) ? Colors.black : Colors.white,
|
|
borderRadius: 2,
|
|
),
|
|
dataModuleStyle: QrDataModuleStyle(
|
|
color: isDarkMode(context) ? Colors.black : Colors.white,
|
|
borderRadius: 2,
|
|
),
|
|
gapless: false,
|
|
embeddedImage: (widget.showAvatar && _userAvatar != null)
|
|
? MemoryImage(_userAvatar!)
|
|
: null,
|
|
embeddedImageStyle: QrEmbeddedImageStyle(
|
|
size: const Size(60, 66),
|
|
embeddedImageShape: EmbeddedImageShape.square,
|
|
shapeColor: context.color.primary,
|
|
safeArea: true,
|
|
),
|
|
size: widget.size,
|
|
),
|
|
)
|
|
: const SizedBox.shrink(key: ValueKey('qr_code_placeholder')),
|
|
),
|
|
);
|
|
}
|
|
}
|