Skip to content

Commit

Permalink
Correct Links
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerhgl committed Nov 8, 2020
1 parent 8822fe9 commit 74326b6
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ if (flutterRoot == null) {

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '4'
flutterVersionCode = '5'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '3.0.1'
flutterVersionName = '3.0.2'
}

apply plugin: 'com.android.application'
Expand Down
7 changes: 4 additions & 3 deletions lib/screens/AboutDeveloper/data.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import 'package:flutter_icons/flutter_icons.dart';

import 'package:invmovieconcept1/static/Links.dart';

import 'messages/keys.dart';

final devDescription = [
Expand Down Expand Up @@ -63,14 +65,13 @@ final showSupport = [
{
"label": AboutDeveloperScreenMessages.likeProject1,
"icon": MaterialCommunityIcons.github_face,
"link": "https://github.com/hackerhgl/flutter-ui-designs",
"link": MyLinks.invmovieconcept1Github,
},
{
"platform": "Play Store",
"label": AboutDeveloperScreenMessages.likeProject2,
"icon": MaterialCommunityIcons.google_play,
"link":
"https://play.google.com/store/apps/details?id=com.onemdev.flutter_ui_challenges",
"link": MyLinks.invmovieconcept1GooglePlay,
},
{
"platform": "Linkedin",
Expand Down
26 changes: 26 additions & 0 deletions lib/static/Links.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
abstract class MyLinks {
static final facebook = 'https://facebook.com/hackerhgl';
static final twitter = 'https://twitter.com/hackerhgl';
static final github = 'https://github.com/hackerhgl';

//
static final fudGithub = 'https://github.com/hackerhgl/flutter-ui-designs';
static final fudGooglePlay =
'https://play.google.com/store/apps/details?id=com.onemdev.flutter_ui_challenges';

//
static final rnLoopGithub =
'https://github.com/hackerhgl/react-native-loop-game';
static final rnLoopGooglePlay =
'https://play.google.com/store/apps/details?id=com.onemdev.rnloop';

//
static final invmovieconcept1Github =
'https://github.com/hackerhgl/invmovieconcept1';
static final invmovieconcept1GooglePlay =
'https://play.google.com/store/apps/details?id=com.onemdev.invmovieconcept1';

//
static final hackerhglCVGithub = 'https://github.com/hackerhgl/CV';
static final hackerhglCVWeb = 'https://hackerhgl-cv.web.app/';
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A new Flutter project.

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 3.0.1
version: 3.0.2

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

0 comments on commit 74326b6

Please sign in to comment.