File tree 8 files changed +41
-13
lines changed
8 files changed +41
-13
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ android {
43
43
targetSdkVersion 28
44
44
versionCode flutterVersionCode. toInteger()
45
45
versionName flutterVersionName
46
- testInstrumentationRunner " android.support .test.runner.AndroidJUnitRunner"
46
+ testInstrumentationRunner " androidx .test.runner.AndroidJUnitRunner"
47
47
}
48
48
49
49
buildTypes {
@@ -62,6 +62,6 @@ flutter {
62
62
dependencies {
63
63
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
64
64
testImplementation ' junit:junit:4.12'
65
- androidTestImplementation ' com.android.support. test:runner:1.0.2 '
66
- androidTestImplementation ' com.android.support. test.espresso:espresso-core:3.0.2 '
65
+ androidTestImplementation ' androidx. test:runner:1.1.1 '
66
+ androidTestImplementation ' androidx. test.espresso:espresso-core:3.1.1 '
67
67
}
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.2.71 '
2
+ ext. kotlin_version = ' 1.3.50 '
3
3
repositories {
4
4
google()
5
5
jcenter()
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:3.2.1 '
9
+ classpath ' com.android.tools.build:gradle:3.5.0 '
10
10
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
11
11
}
12
12
}
Original file line number Diff line number Diff line change 1
1
org.gradle.jvmargs =-Xmx1536M
2
-
3
2
android.enableR8 =true
3
+ android.useAndroidX =true
4
+ android.enableJetifier =true
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.10 .2-all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.6 .2-all.zip
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
2
2
import 'package:flutter_app_sample/ui/base/AppCommonStatefulPage.dart' ;
3
3
import 'package:flutter_app_sample/sample/MainSortListPage.dart' ;
4
4
import 'package:flutter_app_sample/component/game/MainGamePage.dart' ;
5
+ import 'package:url_launcher/url_launcher.dart' ;
5
6
6
7
///主页面
7
8
///
@@ -63,7 +64,11 @@ class MainPage extends AppCommonStatefulPage {
63
64
List <Widget > _bottomNavigationWidgets = [
64
65
_getListView (),
65
66
Center (
66
- child: Text ("Games" ),
67
+ child: Column (
68
+ children: < Widget > [
69
+ Text ("Games" ),
70
+ ],
71
+ ),
67
72
),
68
73
Center (
69
74
child: Text ("TODO" ),
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class CardInfoPage extends AppCommonStatefulPage {
62
62
trailing: Text ("描述:点击➕号来增加年龄值" ),
63
63
),
64
64
ChangeNotifierProvider (
65
- builder : (BuildContext context) => _cardModelBYNotifierProvider,
65
+ create : (BuildContext context) => _cardModelBYNotifierProvider,
66
66
child: Consumer <CardModelBYNotifierProvider >(
67
67
builder: (context, cart, child) {
68
68
return RaisedButton (
Original file line number Diff line number Diff line change 5
5
import FlutterMacOS
6
6
import Foundation
7
7
8
+ import ai_barcode
9
+ import url_launcher_macos
8
10
9
11
func RegisterGeneratedPlugins( registry: FlutterPluginRegistry ) {
12
+ AiBarcodePlugin . register ( with: registry. registrar ( forPlugin: " AiBarcodePlugin " ) )
13
+ UrlLauncherPlugin . register ( with: registry. registrar ( forPlugin: " UrlLauncherPlugin " ) )
10
14
}
Original file line number Diff line number Diff line change @@ -23,12 +23,30 @@ dependencies:
23
23
# The following adds the Cupertino Icons font to your application.
24
24
# Use with the CupertinoIcons class for iOS style icons.
25
25
cupertino_icons : ^0.1.2
26
- fluttertoast : ^2 .1.1
27
- dio : ^3.0.2
28
- provider : ^3 .0.0
26
+ fluttertoast : ^3 .1.3
27
+ dio : ^3.0.8
28
+ provider : ^4 .0.2
29
29
30
30
# Route package.
31
- airoute : ^0.1.7
31
+ airoute : ^0.1.8
32
+
33
+ # Barcode package.
34
+ # ai_barcode: ^0.2.7
35
+ ai_barcode :
36
+ git :
37
+ url : https://github.com/pdliuw/ai_barcode.git
38
+
39
+ # Http package.
40
+ # ai_http: ^0.1.1
41
+
42
+ # url launch
43
+ url_launcher : ^5.4.1
44
+
45
+ # preferences
46
+ # shared_preferences: ^0.5.6
47
+
48
+ # video
49
+ # video_player: ^0.10.5+2
32
50
33
51
dev_dependencies :
34
52
flutter_test :
You can’t perform that action at this time.
0 commit comments