diff --git a/lib/drawer/view/crossword_drawer.dart b/lib/drawer/view/crossword_drawer.dart index fa2f5e706..5adf15d2c 100644 --- a/lib/drawer/view/crossword_drawer.dart +++ b/lib/drawer/view/crossword_drawer.dart @@ -104,13 +104,6 @@ class CrosswordDrawer extends StatelessWidget { context.launchUrl(ProjectDetailsLinks.termsOfService); }, ), - DrawerItem( - title: l10n.faqs, - icon: Icons.chat, - onPressed: () { - context.launchUrl(ProjectDetailsLinks.faqs); - }, - ), ]; return Drawer( diff --git a/lib/l10n/arb/app_en.arb b/lib/l10n/arb/app_en.arb index bdd741102..24c6d9366 100644 --- a/lib/l10n/arb/app_en.arb +++ b/lib/l10n/arb/app_en.arb @@ -243,10 +243,6 @@ "@termsOfService": { "description": "Terms of Service label" }, - "faqs": "FAQs", - "@faqs": { - "description": "FAQs label" - }, "type": "Type", "@type": { "description": "Type word." @@ -344,7 +340,7 @@ "description": "The first step instruction on how to play." }, "aboutHowToPlaySecondInstructionsTitle": "Solve the Word, Earn Points", - "@aboutHowToPlaySecondInstructionstitle": { + "@aboutHowToPlaySecondInstructionsTitle": { "description": "The second step instruction title." }, "aboutHowToPlaySecondInstructions": "Think you know the answer? Take a guess and solve it! You'll earn points for each word you solve.", diff --git a/lib/project_details/link/project_details_links.dart b/lib/project_details/link/project_details_links.dart index 01637c76d..8e48cc060 100644 --- a/lib/project_details/link/project_details_links.dart +++ b/lib/project_details/link/project_details_links.dart @@ -3,7 +3,6 @@ class ProjectDetailsLinks { static const googleIO = 'https://io.google/2024'; static const privacyPolicy = 'https://policies.google.com/privacy'; static const termsOfService = 'https://policies.google.com/terms'; - static const faqs = 'https://flutter.dev/crossword'; static const claimBadge = 'https://developers.google.com/profile/badges/events/io/2024/crossword'; static const googleAI = 'https://ai.google.dev/'; diff --git a/test/drawer/view/crossword_drawer_test.dart b/test/drawer/view/crossword_drawer_test.dart index b100c5ce6..03ae5fd91 100644 --- a/test/drawer/view/crossword_drawer_test.dart +++ b/test/drawer/view/crossword_drawer_test.dart @@ -260,27 +260,5 @@ void main() { ); }, ); - - testWidgets( - 'FAQs is tapped', - (tester) async { - await tester.pumpApp(CrosswordDrawer()); - await tester.dragUntilVisible( - find.text('FAQs'), - find.byType(CrosswordDrawer), - Offset(0, -50), - ); - await tester.pumpAndSettle(); - await tester.tap(find.text('FAQs')); - await tester.pumpAndSettle(); - - verify( - () => urlLauncher.launchUrl( - ProjectDetailsLinks.faqs, - any(), - ), - ); - }, - ); }); }