update code formatting

This commit is contained in:
Evgeny Poberezkin
2021-10-18 07:46:01 +01:00
parent 28122fa003
commit c183c819fc
2 changed files with 2 additions and 2 deletions
-1
View File
@@ -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]
@@ -179,7 +179,8 @@ class _ProfileViewState extends State<ProfileView> {
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'));
}