aboutsummaryrefslogtreecommitdiff
path: root/lib/views/vote_view.dart
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2022-07-30 10:10:43 +0200
committerdavidpkj <davidpenkow1@gmail.com>2022-07-30 10:10:43 +0200
commitccb8d94be2221e1cac8d0e36a4464418ce03aec5 (patch)
treebb042bbe1c8fdfe0c0630fadd7bd3582d3436ee8 /lib/views/vote_view.dart
parentd282f4bb380ce9c445d6bd3a4c9f001bb6b5f501 (diff)
updated flutter, new recipe layout
Diffstat (limited to 'lib/views/vote_view.dart')
-rw-r--r--lib/views/vote_view.dart3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/views/vote_view.dart b/lib/views/vote_view.dart
index 7de2d10..86ddc0b 100644
--- a/lib/views/vote_view.dart
+++ b/lib/views/vote_view.dart
@@ -12,14 +12,13 @@ class VoteView extends StatefulWidget {
_VoteViewState createState() => _VoteViewState();
}
-// TODO: Change from vote to schedule
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(), // TODO: IMPLEMENT: A voting system
+ body: NoContentError(),
);
}
}