From bc1c8589c3fa6de594bd77079dd44565c404ede3 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Tue, 19 Oct 2021 08:16:49 +0100 Subject: [PATCH 1/2] update format --- .../lib/views/scan_invitation/scan_invitation_view.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/simplex_app/lib/views/scan_invitation/scan_invitation_view.dart b/packages/simplex_app/lib/views/scan_invitation/scan_invitation_view.dart index 9363ba99ca..51f8c94e68 100644 --- a/packages/simplex_app/lib/views/scan_invitation/scan_invitation_view.dart +++ b/packages/simplex_app/lib/views/scan_invitation/scan_invitation_view.dart @@ -28,10 +28,8 @@ class ScanInvitationView extends StatelessWidget { SizedBox(height: _size.height * 0.04), GestureDetector( onTap: () => _showConnection(context), - child: Image.asset( - 'assets/code.png', - height: _size.height * 0.3 - ), + child: + Image.asset('assets/code.png', height: _size.height * 0.3), ), SizedBox(height: _size.height * 0.04), const Text( From 7d32be57a95f72a978c3dd28ce142727eb15bfa2 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Tue, 19 Oct 2021 08:31:45 +0100 Subject: [PATCH 2/2] remove unused import --- packages/simplex_app/lib/views/contacts/add_contact_view.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/simplex_app/lib/views/contacts/add_contact_view.dart b/packages/simplex_app/lib/views/contacts/add_contact_view.dart index 6d73853b16..485ebbb7f8 100644 --- a/packages/simplex_app/lib/views/contacts/add_contact_view.dart +++ b/packages/simplex_app/lib/views/contacts/add_contact_view.dart @@ -2,7 +2,6 @@ import 'dart:io'; import 'package:flutter/material.dart'; import 'package:qr_code_scanner/qr_code_scanner.dart'; -import 'package:simplex_chat/views/contacts/qr_code_details_view.dart'; class AddContactView extends StatefulWidget { const AddContactView({Key? key}) : super(key: key);