feat: add missing dEuro learn more links (#2376)
Konstantin Ullrich committed
Jul 11, 2025 at 15:27 UTC
203aff83f2ccd37c18b21351609b527d88849b7b
1 file changed
+3
-3
lib/src/screens/integrations/deuro/savings_page.dart
+3
-3
@@ -275,7 +275,7 @@ class DEuroSavingsPage extends BasePage {
275
title: S.of(context).deuro_savings_balance,
276
content: S.of(context).deuro_savings_balance_tooltip,
277
key: 'savings_tooltip',
278
- onLearnMorePressed: () {}, //ToDo
278
+ onLearnMorePressed: () => launchUrlString("https://deuro.com/#faq"),
279
);
280
281
void _onInterestTooltipPressed(BuildContext context) => _showTooltip(
@@ -283,7 +283,7 @@ class DEuroSavingsPage extends BasePage {
283
title: S.of(context).deuro_savings_collect_interest,
284
content: S.of(context).deuro_savings_collect_interest_tooltip,
285
key: 'interest_tooltip',
286
- onLearnMorePressed: () {}, //ToDo
286
+ onLearnMorePressed: () => launchUrlString("https://deuro.com/#faq"),
287
);
288
289
void _showTooltip(
@@ -333,7 +333,7 @@ class DEuroSavingsPage extends BasePage {
333
actionRightButton: () => Navigator.of(bottomSheetContext).pop(),
334
leftButtonText: S.of(context).learn_more,
335
leftActionButtonKey: ValueKey('deuro_page_tooltip_dialog_welcome_learn_more_button_key'),
336
- actionLeftButton: () => Navigator.of(bottomSheetContext).pop(), // ToDo
336
+ actionLeftButton: () => launchUrlString("https://deuro.com/what-is-deuro.html"),
337
showDisclaimerText: _dEuroViewModel.isFistTime,
338
),
339
);