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')); }