From 535081b4830813065655d62b6d0656210270faf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Sun, 12 Mar 2023 17:39:04 +0100 Subject: [PATCH] chore: Follow up qr code width --- lib/pages/new_private_chat/new_private_chat_view.dart | 2 +- pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/new_private_chat/new_private_chat_view.dart b/lib/pages/new_private_chat/new_private_chat_view.dart index 9b608e23..19a988d1 100644 --- a/lib/pages/new_private_chat/new_private_chat_view.dart +++ b/lib/pages/new_private_chat/new_private_chat_view.dart @@ -21,7 +21,7 @@ class NewPrivateChatView extends StatelessWidget { @override Widget build(BuildContext context) { final qrCodeSize = - min(MediaQuery.of(context).size.width - 16, 200).toDouble(); + min(MediaQuery.of(context).size.width - 16, 256).toDouble(); return Scaffold( appBar: AppBar( leading: const BackButton(), diff --git a/pubspec.yaml b/pubspec.yaml index feec65fd..b68c661a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: fluffychat description: Chat with your friends. publish_to: none -version: 1.10.0+3252 +version: 1.10.0+3253 environment: sdk: ">=2.12.0 <3.0.0"