Skip to content

Commit

Permalink
remove forum item from drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
dasmikko committed Feb 19, 2023
1 parent 6e9ef42 commit 2175f8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions ios/Flutter/flutter_export_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export "FLUTTER_APPLICATION_PATH=/home/mjensen/repos/knocky"
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
export "FLUTTER_TARGET=lib/main.dart"
export "FLUTTER_BUILD_DIR=build"
export "FLUTTER_BUILD_NAME=2.3.0"
export "FLUTTER_BUILD_NUMBER=80"
export "FLUTTER_BUILD_NAME=2.3.1"
export "FLUTTER_BUILD_NUMBER=81"
export "DART_OBFUSCATION=false"
export "TRACK_WIDGET_CREATION=true"
export "TREE_SHAKE_ICONS=false"
Expand Down
10 changes: 0 additions & 10 deletions lib/widgets/drawer/mainDrawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@ class _MainDrawerState extends State<MainDrawer> with TickerProviderStateMixin {
if (!authController.isAuthenticated.value) return [];

return [
DrawerListTile(
iconData: FontAwesomeIcons.tableList,
title: 'Forum',
onTap: () => {},
),
DrawerNotificationsListTile(
disabled: !authController.isAuthenticated.value,
iconData: FontAwesomeIcons.solidNewspaper,
Expand Down Expand Up @@ -160,11 +155,6 @@ class _MainDrawerState extends State<MainDrawer> with TickerProviderStateMixin {
List<Widget> guestDrawerItems() {
if (authController.isAuthenticated.value) return [];
return [
DrawerListTile(
iconData: FontAwesomeIcons.tableList,
title: 'Forum',
onTap: () => {},
),
DrawerListTile(
iconData: FontAwesomeIcons.solidClock,
title: 'Latest Threads',
Expand Down

0 comments on commit 2175f8a

Please sign in to comment.