Skip to content

Commit

Permalink
πŸ” update version
Browse files Browse the repository at this point in the history
  • Loading branch information
mulaRahul committed Aug 28, 2022
1 parent d28c363 commit 5112ca6
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions lib/views/about_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AboutTab extends StatelessWidget {
children: [
Image.asset("assets/img/icon.png"),
const Space(),
const Text("Keyviz v1.0.2", style: paragraphStyle),
const Text("Keyviz v1.0.6", style: paragraphStyle),
const Text("©️ Rahul Mula", style: paragraphStyle),
const SizedBox(height: 32),
const Text(
Expand Down Expand Up @@ -45,9 +45,9 @@ class AboutTab extends StatelessWidget {
),
],
),
const SizedBox(height: 32),
const SizedBox(height: 24),
const Text(
"Keyviz is free and open-source software and if it provides value to you, then that's all that matters ✨. If you'd like to donate/sponsor the project then you're most welcome πŸ’–!\nIt doesn't matter how much you donate, it's your initiative that brings a smile to my face 😁. Either you donate, sponsor, or just drop in to say thanks - it reminds me of the fact that it's not my fun project anymore, it's our project!",
"Keyviz is free and open-source software and if it provides value to you, then that's all that matters ✨. If you'd like to donate/sponsor the project then you're most welcome πŸ’–! It doesn't matter how much you donate, it's your initiative that brings a smile to my face 😁.Either you donate, sponsor, or just drop in to say thanks - it reminds me of the fact that it's not my fun project anymore, it's our project!",
style: paragraphStyle,
textAlign: TextAlign.center,
),
Expand All @@ -57,10 +57,20 @@ class AboutTab extends StatelessWidget {
children: [
ElevatedButton(
onPressed: () => launchUrl(
Uri.parse("https://www.paypal.com/paypalme/ral162"),
Uri.parse(
"https://www.producthunt.com/products/keyviz-2/reviews/new",
),
),
style: elevatedButtonStyle,
child: const Text("Feedback"),
),
const SizedBox(width: 24),
ElevatedButton(
onPressed: () => launchUrl(
Uri.parse("https://opencollective.com/keyviz"),
),
style: elevatedButtonStyle,
child: const Text("PayPal"),
child: const Text("Open Collective"),
),
const SizedBox(width: 24),
ElevatedButton(
Expand Down

0 comments on commit 5112ca6

Please sign in to comment.