From d235f3e511d0dc21d446618ccd7aa70d875267e4 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 9b608e232..19a988d14 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 feec65fdc..b68c661a3 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"