-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from leynier/develop
Add initial message, faqs page and fix registration success message
- Loading branch information
Showing
28 changed files
with
531 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ enum HomeItemEnum { | |
ResetPassword, | ||
AboutUs, | ||
HelpfulLinks, | ||
Faqs, | ||
Logout, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
import 'package:gestionuh/src/data/models/base_model.dart'; | ||
import 'package:json_annotation/json_annotation.dart'; | ||
|
||
part 'status.g.dart'; | ||
|
||
@JsonSerializable() | ||
class Status extends BaseModel { | ||
bool? status; | ||
|
||
Status({this.status}); | ||
|
||
factory Status.fromJson(Map<String, dynamic> json) => _$StatusFromJson(json); | ||
|
||
@override | ||
Map<String, dynamic> toJson() { | ||
// TODO: implement toJson | ||
throw UnimplementedError(); | ||
} | ||
Map<String, dynamic> toJson() => _$StatusToJson(this); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.