Resolves #401 Fix login restart and several login views opened

This commit is contained in:
estevez-dev
2019-09-01 22:27:56 +03:00
parent e8efefe25d
commit de762a4878
4 changed files with 56 additions and 8 deletions

View File

@ -200,9 +200,10 @@ class ShowEntityPageEvent {
}
class ShowPageEvent {
String path;
final String path;
final bool goBackFirst;
ShowPageEvent(this.path);
ShowPageEvent({@required this.path, this.goBackFirst: false});
}
class ShowErrorEvent {