From 602443eea8d6e7acbc2f82eceed06790e0ec147e Mon Sep 17 00:00:00 2001 From: otsmr Date: Sun, 1 Jun 2025 16:58:32 +0200 Subject: [PATCH] refund --- .../settings/account/refund_credits.view.dart | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/lib/src/views/settings/account/refund_credits.view.dart b/lib/src/views/settings/account/refund_credits.view.dart index 2d8b1d8..810c53c 100644 --- a/lib/src/views/settings/account/refund_credits.view.dart +++ b/lib/src/views/settings/account/refund_credits.view.dart @@ -1,7 +1,7 @@ import 'package:flutter/material.dart'; -import 'package:font_awesome_flutter/font_awesome_flutter.dart'; +// import 'package:font_awesome_flutter/font_awesome_flutter.dart'; import 'package:twonly/src/views/settings/subscription/voucher.view.dart'; -import 'package:url_launcher/url_launcher.dart'; +// import 'package:url_launcher/url_launcher.dart'; class RefundCreditsView extends StatefulWidget { const RefundCreditsView({super.key, required this.formattedBalance}); @@ -41,34 +41,34 @@ class _RefundCreditsViewState extends State { Navigator.pop(context, false); }, ), - ListTile( - title: Text("Spend to an Open Source Project"), - onTap: () async {}, - ), - ListTile( - title: Text("Spend to an NGO"), - onTap: () async {}, - ), - ListTile( - title: Text("Spend to twonly"), - onTap: () async {}, - ), - Divider(), - ListTile( - title: Text( - "Learn more about your donation", - ), - subtitle: Text( - "This will open our webpage which will provide you more informations where we will donate your remaining ballance if you choose this option.", - ), - onTap: () { - launchUrl(Uri.parse("https://twonly.eu/de/donation/")); - }, - trailing: FaIcon( - FontAwesomeIcons.arrowUpRightFromSquare, - size: 15, - ), - ), + // ListTile( + // title: Text("Spend to an Open Source Project"), + // onTap: () async {}, + // ), + // ListTile( + // title: Text("Spend to an NGO"), + // onTap: () async {}, + // ), + // ListTile( + // title: Text("Spend to twonly"), + // onTap: () async {}, + // ), + // Divider(), + // ListTile( + // title: Text( + // "Learn more about your donation", + // ), + // subtitle: Text( + // "This will open our webpage which will provide you more informations where we will donate your remaining ballance if you choose this option.", + // ), + // onTap: () { + // launchUrl(Uri.parse("https://twonly.eu/de/donation/")); + // }, + // trailing: FaIcon( + // FontAwesomeIcons.arrowUpRightFromSquare, + // size: 15, + // ), + // ), ], ), ),