From c183c819fc4e2c26bd66dd88542dea25e7c6f9e4 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Mon, 18 Oct 2021 07:46:01 +0100 Subject: [PATCH] update code formatting --- packages/simplex_app/lib/main.dart | 1 - packages/simplex_app/lib/views/profile/profile_view.dart | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/simplex_app/lib/main.dart b/packages/simplex_app/lib/main.dart index f46ec4ef3c..7f3cc91b0e 100644 --- a/packages/simplex_app/lib/main.dart +++ b/packages/simplex_app/lib/main.dart @@ -12,7 +12,6 @@ import 'package:simplex_chat/views/scan_invitation/scan_invitation_view.dart'; import 'package:simplex_chat/views/setup_profile_view.dart'; import 'package:simplex_chat/views/splash_screen.dart'; - /// Basic Structure is setup on [Providers] /// Navigations are [namedRoutes] diff --git a/packages/simplex_app/lib/views/profile/profile_view.dart b/packages/simplex_app/lib/views/profile/profile_view.dart index 43f7edec53..f35f7b5dc7 100644 --- a/packages/simplex_app/lib/views/profile/profile_view.dart +++ b/packages/simplex_app/lib/views/profile/profile_view.dart @@ -179,7 +179,8 @@ class _ProfileViewState extends State { SharedPreferences prefs = await SharedPreferences.getInstance(); await prefs.setString('displayName', _displayNameController.text.trim()); await prefs.setString('fullName', _fullNameController.text.trim()); - await prefs.setString('photo${_displayNameController.text.trim()}', _photo!); + await prefs.setString( + 'photo${_displayNameController.text.trim()}', _photo!); debugPrint(prefs.getString('photo')); }