mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-08 04:59:29 +01:00
Merge branch 'krille/fix-qr-code' into 'main'
design: Place share button under qr code See merge request famedly/fluffychat!569
This commit is contained in:
commit
2988d6f0b5
@ -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(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
QrImage(
|
||||||
data:
|
data:
|
||||||
'https://matrix.to/#/${Matrix.of(context).client.userID}',
|
'https://matrix.to/#/${Matrix.of(context).client.userID}',
|
||||||
version: QrVersions.auto,
|
version: QrVersions.auto,
|
||||||
size: min(MediaQuery.of(context).size.width - 16, 200),
|
size: min(MediaQuery.of(context).size.width - 16, 200),
|
||||||
embeddedImage: const AssetImage('assets/share.png'),
|
|
||||||
embeddedImageStyle: QrEmbeddedImageStyle(
|
|
||||||
size: const Size(48, 48),
|
|
||||||
),
|
),
|
||||||
|
Image.asset('assets/share.png', width: 48, height: 48),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user