Skip to content

Commit 1962206

Browse files
committed
Ajustes de versão e de imports
1 parent e26955f commit 1962206

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/MobileApp/lib/View/SignView/SignUp.view.dart

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
// @dart=2.9
2+
import 'dart:convert';
3+
4+
import 'package:ReachUp/Component/Database/Database.db.dart';
25
import 'package:ReachUp/Component/Dialog/CustomDialog.component.dart';
36
import 'package:ReachUp/Controller/Account.controller.dart';
47
import 'package:ReachUp/Controller/Category.controller.dart';
@@ -314,11 +317,9 @@ class _StepperBodyState extends State<StepperBody> {
314317
EasyLoading.show(status: "Carregando");
315318
accountController.signUp().then((value) {
316319
EasyLoading.dismiss();
317-
Globals.user = value;
318-
Database.insert(
319-
key: "user",
320-
value: jsonEncode(
321-
Globals.user.toJson()));
320+
Globals.user = value;
321+
Database.insert(
322+
key: "user", value: jsonEncode(Globals.user.toJson()));
322323
});
323324

324325
List<Category> categories = new List<Category>();

src/MobileApp/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Mobile application for indoor location, provides blind and visually
33

44
publish_to: 'none'
55

6-
version: 1.0.4+5
6+
version: 1.0.6+6
77

88
environment:
99
sdk: "2.12.0"

0 commit comments

Comments
 (0)