chore: Follow up qr code width

This commit is contained in:
Christian Kußowski 2023-03-12 17:39:04 +01:00
parent 901b4862e4
commit d235f3e511
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ class NewPrivateChatView extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final qrCodeSize = final qrCodeSize =
min(MediaQuery.of(context).size.width - 16, 200).toDouble(); min(MediaQuery.of(context).size.width - 16, 256).toDouble();
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
leading: const BackButton(), leading: const BackButton(),

View file

@ -1,7 +1,7 @@
name: fluffychat name: fluffychat
description: Chat with your friends. description: Chat with your friends.
publish_to: none publish_to: none
version: 1.10.0+3252 version: 1.10.0+3253
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"