-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b02a9e8
commit ff70d67
Showing
3 changed files
with
19 additions
and
6 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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
part of 'root_bloc.dart'; | ||
|
||
@immutable | ||
abstract class RootEvent extends Equatable {} | ||
abstract class RootEvent {} | ||
|
||
class VersionInfoInit extends RootEvent {} | ||
|
||
class NavigationBarItemTapped extends RootEvent { | ||
final int tabIndex; | ||
|
||
NavigationBarItemTapped({required this.tabIndex}); | ||
|
||
@override | ||
List<Object?> get props => [tabIndex]; | ||
} |
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