aboutsummaryrefslogtreecommitdiff
path: root/lib/views/vote_view.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/views/vote_view.dart')
-rw-r--r--lib/views/vote_view.dart8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/views/vote_view.dart b/lib/views/vote_view.dart
index 86ddc0b..9c5721e 100644
--- a/lib/views/vote_view.dart
+++ b/lib/views/vote_view.dart
@@ -9,16 +9,16 @@ class VoteView extends StatefulWidget {
const VoteView({Key? key}) : super(key: key);
@override
- _VoteViewState createState() => _VoteViewState();
+ VoteViewState createState() => VoteViewState();
}
-class _VoteViewState extends State<VoteView> {
+class VoteViewState extends State<VoteView> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(AppLocalizations.of(context)!.category6)),
- drawer: CustomDrawer(initalIndex: 3),
- body: NoContentError(),
+ drawer: const CustomDrawer(initialIndex: 3),
+ body: const NoContentError(),
);
}
}