Skip to content

Commit

Permalink
added google play store link
Browse files Browse the repository at this point in the history
  • Loading branch information
pichillilorenzo committed Jul 16, 2020
1 parent 6c7de62 commit 837db61
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A Full-Featured Mobile Browser App (such as the Google Chrome mobile browser) created using Flutter and the features offered by the [flutter_inappwebview](https://github.com/pichillilorenzo/flutter_inappwebview) plugin.

It is available on the **Google Play Store** at [https://play.google.com/store/apps?hl=en](https://play.google.com/store/apps?hl=en)
It is available on the **Google Play Store** at [https://play.google.com/store/apps/details?id=com.pichillilorenzo.flutter_browser](https://play.google.com/store/apps/details?id=com.pichillilorenzo.flutter_browser)

## Introduction
Article: [Creating a Full-Featured Browser using WebViews in Flutter]().
Expand Down
27 changes: 7 additions & 20 deletions lib/project_info_popup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -86,32 +86,19 @@ class _ProjectInfoPopupState extends State<ProjectInfoPopup> {
},
),
SizedBox(height: 20.0,),
RichText(
text: TextSpan(
children: [
TextSpan(
text: "Support these projects with a donation",
style: TextStyle(color: Colors.black),

),
]
),
),
FlatButton.icon(
icon: Icon(FlutterIcons.paypal_ent, size: 30.0,),
label: RichText(
Container(
width: 250.0,
child: RichText(
textAlign: TextAlign.center,
text: TextSpan(
children: [
TextSpan(
text: "paypal.me/LorenzoPichilli",
style: TextStyle(color: Colors.blue)
)
text: "Also, if you want, you can support these projects with a donation. Thanks!",
style: TextStyle(color: Colors.black),
),
]
),
),
onPressed: () {
InAppBrowser.openWithSystemBrowser(url: "https://www.paypal.me/LorenzoPichilli");
},
),
];

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0
version: 1.0.0+2

environment:
sdk: ">=2.7.0 <3.0.0"
Expand Down

0 comments on commit 837db61

Please sign in to comment.