Skip to content

Commit

Permalink
Ajustes de versão e de imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rod-moraes committed Nov 7, 2023
1 parent e26955f commit 1962206
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions src/MobileApp/lib/View/SignView/SignUp.view.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// @dart=2.9
import 'dart:convert';

import 'package:ReachUp/Component/Database/Database.db.dart';
import 'package:ReachUp/Component/Dialog/CustomDialog.component.dart';
import 'package:ReachUp/Controller/Account.controller.dart';
import 'package:ReachUp/Controller/Category.controller.dart';
Expand Down Expand Up @@ -314,11 +317,9 @@ class _StepperBodyState extends State<StepperBody> {
EasyLoading.show(status: "Carregando");
accountController.signUp().then((value) {
EasyLoading.dismiss();
Globals.user = value;
Database.insert(
key: "user",
value: jsonEncode(
Globals.user.toJson()));
Globals.user = value;
Database.insert(
key: "user", value: jsonEncode(Globals.user.toJson()));
});

List<Category> categories = new List<Category>();
Expand Down
2 changes: 1 addition & 1 deletion src/MobileApp/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Mobile application for indoor location, provides blind and visually

publish_to: 'none'

version: 1.0.4+5
version: 1.0.6+6

environment:
sdk: "2.12.0"
Expand Down

0 comments on commit 1962206

Please sign in to comment.