design: Place share button under qr code

This should make the qr code
scanning more reliable.
This commit is contained in:
Krille Fear 2021-11-22 11:18:32 +01:00
parent 8a6b59d8f0
commit daadef7c59

View file

@ -51,15 +51,17 @@ class NewPrivateChatView extends StatelessWidget {
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(12),
elevation: 4, elevation: 4,
color: Colors.white, color: Colors.white,
child: QrImage( child: Column(
data: mainAxisSize: MainAxisSize.min,
'https://matrix.to/#/${Matrix.of(context).client.userID}', children: [
version: QrVersions.auto, QrImage(
size: min(MediaQuery.of(context).size.width - 16, 200), data:
embeddedImage: const AssetImage('assets/share.png'), 'https://matrix.to/#/${Matrix.of(context).client.userID}',
embeddedImageStyle: QrEmbeddedImageStyle( version: QrVersions.auto,
size: const Size(48, 48), size: min(MediaQuery.of(context).size.width - 16, 200),
), ),
Image.asset('assets/share.png', width: 48, height: 48),
],
), ),
), ),
), ),