Commit 39d8bf42 authored by 林生雨's avatar 林生雨

commit

parent a084b9f7
#Wed Jul 10 19:44:52 CST 2019
#Thu Aug 08 10:34:21 CST 2019
gradle.version=4.10.2
......@@ -44,6 +44,6 @@ flutter {
dependencies {
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:support-v13:28.0.0'
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.android.support:support-v13:27.1.1'
implementation 'com.android.support:support-annotations:27.1.1'
}
This diff is collapsed.
......@@ -2,7 +2,9 @@ package io.flutter.plugins;
import io.flutter.plugin.common.PluginRegistry;
import com.taobao.idlefish.flutterboost.FlutterBoostPlugin;
import flutter.transer.wanmeizhensuo.com.native_flutter_transfer_plugin.NativeFlutterTransferPlugin;
import io.flutter.plugins.pathprovider.PathProviderPlugin;
import io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin;
import com.tekartik.sqflite.SqflitePlugin;
import fleamarket.taobao.com.xservicekit.XserviceKitPlugin;
/**
......@@ -14,7 +16,9 @@ public final class GeneratedPluginRegistrant {
return;
}
FlutterBoostPlugin.registerWith(registry.registrarFor("com.taobao.idlefish.flutterboost.FlutterBoostPlugin"));
NativeFlutterTransferPlugin.registerWith(registry.registrarFor("flutter.transer.wanmeizhensuo.com.native_flutter_transfer_plugin.NativeFlutterTransferPlugin"));
PathProviderPlugin.registerWith(registry.registrarFor("io.flutter.plugins.pathprovider.PathProviderPlugin"));
SharedPreferencesPlugin.registerWith(registry.registrarFor("io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin"));
SqflitePlugin.registerWith(registry.registrarFor("com.tekartik.sqflite.SqflitePlugin"));
XserviceKitPlugin.registerWith(registry.registrarFor("fleamarket.taobao.com.xservicekit.XserviceKitPlugin"));
}
......
......@@ -29,6 +29,7 @@ android {
signingConfig signingConfigs.debug
}
}
}
buildDir = new File(rootProject.projectDir, "../build/host")
dependencies {
......
package com.example.myflutter.host;
import android.os.Bundle;
import io.flutter.app.FlutterActivity;
import io.flutter.plugins.GeneratedPluginRegistrant;
public class MainActivity extends FlutterActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
GeneratedPluginRegistrant.registerWith(this);
}
}
sdk.dir=/Users/mac/Library/Android/sdk
flutter.sdk=/Users/mac/development/flutter
=======
flutter.buildMode=release
sdk.dir=/Users/apple/Library/Android/sdk
flutter.sdk=/Users/apple/Downloads/flutter
flutter.buildMode=debug
flutter.versionName=1.0.0
flutter.versionCode=1
\ No newline at end of file
Flutter crash report; please file at https://github.com/flutter/flutter/issues.
## command
flutter --no-color run --machine --track-widget-creation --device-id=emulator-5554 lib/main.dart
## exception
SocketException: SocketException: Write failed (OS Error: Broken pipe, errno = 32), port = 0
```
null```
## flutter doctor
```
[✓] Flutter (Channel stable, v1.7.8+hotfix.4, on Mac OS X 10.14.5 18F132, locale zh-Hans-CN)
• Flutter version 1.7.8+hotfix.4 at /Users/apple/Downloads/flutter
• Framework revision 20e59316b8 (3 weeks ago), 2019-07-18 20:04:33 -0700
• Engine revision fee001c93f
• Dart version 2.4.0
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.1)
• Android SDK at /Users/apple/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-29, build-tools 29.0.1
• ANDROID_HOME = /Users/apple/Library/Android/sdk
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 10.2.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.2.1, Build version 10E1001
• CocoaPods version 1.7.4
[✓] iOS tools - develop for iOS devices
• ios-deploy 1.9.4
[✓] Android Studio (version 3.4)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 37.0.1
• Dart plugin version 183.6270
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
[!] IntelliJ IDEA Ultimate Edition (version 2019.1.3)
• IntelliJ at /Applications/IntelliJ IDEA.app
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• For information about installing plugins, see
https://flutter.dev/intellij-setup/#installing-the-plugins
[✓] Connected device (3 available)
• OPPO R9s • 50d1ce73 • android-arm64 • Android 6.0.1 (API 23)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 9 (API 28) (emulator)
• 测试机 • c0dd6886e1b566019eca2f00ba000758bbd57a7e • ios • iOS 11.4.1
! Doctor found issues in 1 category.
```
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:gmalpha_flutter/base/user_tool.dart';
class AppConfig {
static const primaryColor = Color(0xFF5DBE82); //主题色
static const disabledMainColor = Color.fromRGBO(97, 190, 130, 0.5);
static const textColor = Color(0xFF333333);
static const grayTextColor = Color(0xFF71747E);
static const backgroundColor = Color(0xFFF5F5F8);
static const divider = Color(0xFFdddddd);
static Color hexToColor(String code) {
return new Color(int.parse(code.substring(1, 7), radix: 16) + 0xFF000000);
}
static Widget getPlaceHoder([width, height]) {
return new Container(
width: width,
height: height,
child: new Image.asset('images/placehoder_img.png',fit: BoxFit.cover,));
}
static Widget getUserPlaceHoder(width, height) {
return new Container(
width: width,
height: height,
child: new Image.asset('images/nologin.png'));
}
static Widget getLoadingPlaceHoder(width, height) {
return new SizedBox(
width: width,
height: height,
child: const CircularProgressIndicator(strokeWidth: 2.0)
);
}
//debug:false release: true
static const bool inProduction = const bool.fromEnvironment("dart.vm.product");
static Widget initLoading(bool showEmpty, [String emptyText = '暂无数据']) {
return new Center(
child: showEmpty ? _initEmpty(emptyText) : SizedBox(
width: 35.0,
height: 35.0,
child: const CircularProgressIndicator(strokeWidth: 2.0)
),
);
}
static Widget _initEmpty(String emptyText) {
return new Container(
padding: EdgeInsets.fromLTRB(0, 80, 0, 0),
child: new Column(
children: <Widget>[
new Icon(Icons.hourglass_empty, color: Colors.grey,size: 60,),
new Container(height: 10,),
new Text(emptyText)
],
),
);
}
static UserTools userTools;
static init() async {
// userTools = await UserTools.getInstance();
}
}
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:provide/provide.dart';
import 'package:rxdart/rxdart.dart';
/// BaseProvide
class BaseProvide with ChangeNotifier {
CompositeSubscription compositeSubscription = CompositeSubscription();
addSubscription(StreamSubscription subscription){
compositeSubscription.add(subscription);
}
@override
void dispose() {
super.dispose();
compositeSubscription.dispose();
}
}
abstract class PageProvideNode extends StatelessWidget {
final Providers mProviders = Providers();
Widget buildContent(BuildContext context);
@override
Widget build(BuildContext context) {
return ProviderNode(
providers: mProviders,
child: buildContent(context),
);
}
}
abstract class BaseState<T extends StatefulWidget> extends State<T> {
@override
void initState() {
super.initState();
}
@override
void dispose() {
super.dispose();
}
}
\ No newline at end of file
import 'package:shared_preferences/shared_preferences.dart';
import 'dart:convert';
class UserTools {
static UserTools _instance;
static Future<UserTools> get instance async {
return await getInstance();
}
static Future<UserTools> getInstance() async {
if (_instance == null) {
_instance = new UserTools();
await _instance._init();
}
return _instance;
}
Future _init() async {
_spf = await SharedPreferences.getInstance();
}
static SharedPreferences _spf;
static bool _beforCheck() {
if (_spf == null) {
return true;
}
return false;
}
// // 存储用户数据
//// Future<bool> setUserData(Map<String, dynamic> user) {
//// if (_beforCheck()) return null;
//// var jsonStr = json.encode(user);
//// return _spf.setString(ConstConfig.CURRENT_USERDATA, jsonStr);
//// }
////
//// // 获取数据
//// dynamic getUserData() {
//// var mapStr = _spf.getString(ConstConfig.CURRENT_USERDATA);
//// if (mapStr != null) {
//// var map = json.decode(mapStr);
//// return map;
//// } else {
//// return null;
//// }
//// }
// String getUserId() {
// var userData = this.getUserData();
// if (userData != null) {
// var user = userData as Map<String, dynamic>;
// return user['userId'];
// } else {
// return '';
// }
// }
//
// String getUserToken() {
// var userData = this.getUserData();
// if (userData != null) {
// var user = userData as Map<String, dynamic>;
// return user['token'];
// } else {
// return '';
// }
// }
// 更新用户头像
// Future<Map<String, dynamic>> updateUserIcon(String iconStr) async {
// var userData = this.getUserData();
// if (userData != null) {
// var user = userData as Map<String, dynamic>;
// user['userPic'] = iconStr;
// await this.setUserData(user);
// return user;
// } else {
// return {};
// }
// }
//
//
// // 删除数据
// Future<bool> delectUserData() {
// return _spf.setString(ConstConfig.CURRENT_USERDATA, null);
// }
}
\ No newline at end of file
import 'package:flutter/material.dart';
import 'package:flutter_boost/flutter_boost.dart';
import 'package:gmalpha_flutter/macros/ALColors.dart';
import 'package:gmalpha_flutter/page/SettingPage.dart';
import 'base/app_config.dart';
import 'simple_page_widgets.dart';
import 'comment_suggest.dart';
void main() {
void main() async {
await AppConfig.init();
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
......@@ -21,15 +27,18 @@ class _MyAppState extends State<MyApp> {
FlutterBoost.singleton.registerPageBuilders({
'first': (pageName, params, _) => FirstRouteWidget(),
'second': (pageName, params, _) => SecondRouteWidget(),
'tab': (pageName, params, _) => TabRouteWidget(),
'flutterFragment': (pageName, params, _) => FragmentRouteWidget(params),
'comment_suggest': (pageName, params, _) => CommentSuggest(params),
///可以在native层通过 getContainerParams 来传递参数
'flutterPage': (pageName, params, _) {
print("flutterPage params:$params");
return FlutterRouteWidget();
},
'setting_page': (pageName, params, _) => SettingPage(params),
// 'tab': (pageName, params, _) => TabRouteWidget(),
// 'flutterFragment': (pageName, params, _) => FragmentRouteWidget(params),
// 'comment_suggest': (pageName, params, _) {
// CommentSuggest(params);
// print("comment_suggest ${params}");
// },
// ///可以在native层通过 getContainerParams 来传递参数
// 'flutterPage': (pageName, params, _) {
// print("flutterPage params:$params");
// return FlutterRouteWidget();
// },
});
FlutterBoost.handleOnStartPage();
......@@ -38,17 +47,18 @@ class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Boost example',
debugShowCheckedModeBanner: false,
initialRoute: '/test',//调试的时候可以打开
routes: {
'/': (context) => CommentSuggest({"Cookie":" _gm_token=7e48641558699683; sessionid=nb3ze4ur7ucosln8sd8pzwojddenv9ym; _gtid=a1bc0a387e1911e996b9525400fa516d4094"}),
},//调试的时候可以打开
builder: FlutterBoost.init(postPush: _onRoutePushed),
theme: new ThemeData(
title: 'Flutter Boost example',
debugShowCheckedModeBanner: false,
// initialRoute: '/test',//调试的时候可以打开
// routes: {
// '/': (context) => SettingPage({"Cookie":" _gm_token=7e48641558699683; sessionid=nb3ze4ur7ucosln8sd8pzwojddenv9ym; _gtid=a1bc0a387e1911e996b9525400fa516d4094"}),
// },//调试的时候可以打开
// builder: FlutterBoost.init(postPush: _onRoutePushed),
home: SettingPage({"Cookie":" _gm_token=7e48641558699683; sessionid=nb3ze4ur7ucosln8sd8pzwojddenv9ym; _gtid=a1bc0a387e1911e996b9525400fa516d4094"}),
theme: new ThemeData(
primaryColor: Colors.white,
backgroundColor: Color(0xFFEFEFEF),
accentColor: Color(0xFF888888),
backgroundColor: Color(0xFFFFFFFF),
accentColor: Color(0xFFFFFFFF),
textTheme: TextTheme(
//设置Material的默认字体样式
body1: TextStyle(color: Color(0xFF888888), fontSize: 16.0),
......@@ -63,6 +73,7 @@ class _MyAppState extends State<MyApp> {
void _onRoutePushed(
String pageName, String uniqueId, Map params, Route route, Future _) {
print('---> _onRoutePushed pageName ' + pageName);
// List<OverlayEntry> newEntries = route.overlayEntries
// .map((OverlayEntry entry) => OverlayEntry(
// builder: (BuildContext context) {
......
import 'package:flutter/services.dart';
import 'package:gmalpha_flutter/base/base.dart';
import 'package:gmalpha_flutter/repo/setting_respository.dart';
class SettingProvide extends BaseProvide {
final repo = new SettingRepo();
bool isModifyAll = false;
int listSize;
String name;
String city;
String email;
String headUrl;
String userId;
bool bindIns = false;
String tempName;
String tempCity;
String tempHeadUrl;
Map args;
init(Map args) {
headUrl = args["headUrl"];
city = args["cityName"];
name = args["name"];
userId = args["userId"];
if (city == null) {
city = "请选择国家";
}
if (args["bindIns"] == "true") {
bindIns = true;
listSize = 4;
} else {
bindIns = false;
listSize = 3;
}
}
void setSaveBtnStatus() {
if (tempName != name && tempCity != city && tempHeadUrl != headUrl) {
isModifyAll = true;
} else {
isModifyAll = false;
}
notifyListeners();
}
void quitLogin() {
repo.quitLogin();
}
void clickCity() {
repo.clickCity();
}
void clickIns() {
if(bindIns) {
repo.clickIns();
}else{
clickArguement();
}
}
void clickArguement() {
repo.clickArguement();
}
}
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:flutter/src/widgets/framework.dart';
import 'package:gmalpha_flutter/base/base.dart';
import 'package:gmalpha_flutter/macros/ALColors.dart';
import 'package:gmalpha_flutter/model/setting_model.dart';
import 'package:provide/provide.dart';
import 'package:flutter_boost/flutter_boost.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class SettingPage extends PageProvideNode {
final provide = new SettingProvide();
SettingPage(Map args) {
mProviders.provide(Provider<SettingProvide>.value(provide));
provide.init(args);
print(args);
}
@override
Widget buildContent(BuildContext context) => _HomeContentPage(provide);
}
class _HomeContentPage extends StatefulWidget {
SettingProvide provide;
_HomeContentPage(this.provide);
@override
State<StatefulWidget> createState() {
return _HomeContentState();
}
}
class _HomeContentState extends State<_HomeContentPage> {
SettingProvide _provide;
var screenUtil;
TextEditingController textEditingController = TextEditingController();
@override
void initState() {
super.initState();
_provide ??= widget.provide;
}
@override
void dispose() {
super.dispose();
textEditingController.dispose();
}
@override
Widget build(BuildContext context) {
// if (screenUtil == null) {
// screenUtil = new ScreenUtil(width: 375, height: 667)..init(context);
// }
return Scaffold(
appBar: new AppBar(
backgroundColor: Color(0xFFffffff),
elevation: 0,
brightness: Brightness.light,
leading: new GestureDetector(
child: new ImageIcon(
AssetImage('images/nav_back.png'),
color: ALColors.Color323232,
),
onTap: () {
FlutterBoost.singleton.closePageForContext(context);
}),
actions: <Widget>[
Container(
height: double.infinity,
padding: EdgeInsets.fromLTRB(0, 0, 30, 0),
child: Center(child: Provide(
builder: (BuildContext c, Widget w, SettingProvide pro) {
return pro.isModifyAll
? Text(
"保存",
style:
TextStyle(fontSize: 14, color: Color(0xffC4C4C4)),
)
: Text(
"保存",
style: TextStyle(fontSize: 14, color: Colors.black),
);
}))),
],
),
body: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Container(
padding: EdgeInsets.fromLTRB(29, 10, 0, 0),
child: Text(
"设置",
style: TextStyle(fontSize: 30, color: Color(0xff323232)),
),
),
Container(
padding: EdgeInsets.fromLTRB(29, 33, 0, 33),
child: Container(
width: 128,
height: 128,
child: Stack(
alignment: AlignmentDirectional.bottomEnd,
children: <Widget>[
Provide(builder:
(BuildContext context, Widget child, SettingProvide pro) {
return pro.headUrl == null
? Image.asset("images/icon_default_head.png")
: ClipOval(
child: CachedNetworkImage(
imageUrl: pro.headUrl,
placeholder: (context, url) {
return Image.asset(
"images/icon_default_head.png");
},
),
);
}),
Image.asset("images/camera.png"),
],
),
),
),
Container(
height: 240,
child: Provide(
builder: (BuildContext c, Widget w, SettingProvide pro) {
return ListView.separated(
padding: EdgeInsets.fromLTRB(30, 0, 30, 0),
itemCount: pro.listSize,
itemBuilder: (BuildContext context, int index) {
return Provide(builder: (BuildContext context, Widget child,
SettingProvide pro) {
if (index == 0) {
return specialOneItem("昵称", index);
} else if (index == 1) {
return ListItemView(context, "国家", pro.city, index);
} else if (index == 2) {
if (pro.bindIns) {
return ListItemView(
context, "我的Instagram账号", pro.email, index);
} else {
return ListItemView(context, "意见与建议", "", index);
}
} else if (index == 3) {
return ListItemView(context, "意见与建议", "", index);
}
});
},
separatorBuilder: (BuildContext context, int index) {
return new Divider(
height: 1.0,
color: Color(0xffE4E4E4),
);
},
);
})),
Container(
padding: EdgeInsets.fromLTRB(30, 0, 30, 0),
child: Divider(
height: 1,
indent: 0.0,
color: Color(0xffE4E4E4),
),
),
Expanded(
child: Container(),
flex: 56,
),
Container(
width: double.maxFinite,
padding: EdgeInsets.fromLTRB(30, 0, 30, 0),
child: OutlineButton(
child: Text(
"退出登入",
style: TextStyle(color: Color(0xff323232), fontSize: 14),
),
onPressed: () => _provide.quitLogin(),
),
),
Expanded(
child: Container(),
flex: 30,
),
],
),
);
}
ListItemView(BuildContext context, String left, String right, int index) {
return Container(
height: 60,
child: GestureDetector(
onTap: onListItemTap(index),
child: Row(
children: <Widget>[
Center(
child: Text(
left,
style: TextStyle(fontSize: 13, color: Color(0xff323232)),
),
),
Expanded(
child: Container(),
flex: 1,
),
Center(
child: right != null
? Text(
right,
style:
TextStyle(fontSize: 13, color: Color(0xff323232)),
)
: Container()),
Center(child: Image.asset("images/right_arrow.png"))
],
),
));
}
specialOneItem(String left, int index) {
return Container(
height: 60,
child: GestureDetector(
onTap: onListItemTap(index),
child: Row(
children: <Widget>[
Center(
child: Text(
left,
style: TextStyle(fontSize: 13, color: Color(0xff323232)),
),
),
Expanded(
child: Container(
width: double.maxFinite,
child: Provide(builder:
(BuildContext context, Widget w, SettingProvide pro) {
return TextField(
controller: textEditingController,
textAlign: TextAlign.end,
style:
TextStyle(fontSize: 13, color: Color(0xff323232)),
maxLines: 1,
showCursor: false,
onEditingComplete: () {
pro.tempName = textEditingController.text;
pro.setSaveBtnStatus();
},
decoration: InputDecoration(
border: InputBorder.none,
hintText: pro.tempName,
hintStyle: TextStyle(
fontSize: 13, color: Color(0xff323232))));
}))),
],
),
),
);
}
onListItemTap(int index) {
if (index == 1) {
//点击国家
_provide.clickCity();
} else if (index == 2) {
//ins
_provide.clickIns();
} else if (index == 3) {
//意见
_provide.clickArguement();
}
}
}
import 'package:flutter/services.dart';
const settingChannel = const MethodChannel('flutter.io/setting_channel_method');
class SettingRepo {
Future<bool> quitLogin() async {
await settingChannel.invokeMethod("quit_login", null);
}
Future<String> clickCity() async {
await settingChannel.invokeMethod("clikc_city", null);
}
Future<String> clickIns() async {
await settingChannel.invokeMethod("click_ins", null);
}
Future<String> clickArguement() async {
await settingChannel.invokeMethod("click_arguement", null);
}
}
......@@ -15,6 +15,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.4"
cached_network_image:
dependency: "direct main"
description:
name: cached_network_image
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.0"
charcode:
dependency: transitive
description:
......@@ -29,6 +36,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.14.11"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.1"
cookie_jar:
dependency: transitive
description:
......@@ -36,6 +50,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.1"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.1+1"
cupertino_icons:
dependency: "direct main"
description:
......@@ -64,11 +85,39 @@ packages:
url: "https://github.com/alibaba/flutter_boost.git"
source: git
version: "0.0.411"
flutter_cache_manager:
dependency: transitive
description:
name: flutter_cache_manager
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.1"
flutter_screenutil:
dependency: "direct main"
description:
name: flutter_screenutil
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.3.1"
flutter_test:
dependency: "direct dev"
description: flutter
source: sdk
version: "0.0.0"
http:
dependency: transitive
description:
name: http
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.12.0+2"
http_parser:
dependency: transitive
description:
name: http_parser
url: "https://pub.flutter-io.cn"
source: hosted
version: "3.1.3"
matcher:
dependency: transitive
description:
......@@ -83,15 +132,6 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.6"
native_flutter_transfer_plugin:
dependency: "direct dev"
description:
path: "."
ref: "0.0.1"
resolved-ref: ac0586e93526bfb4af642a9174de71794978d9c8
url: "git@git.wanmeizhensuo.com:mobile/native_flutter_transfer_plugin.git"
source: git
version: "0.0.1"
path:
dependency: transitive
description:
......@@ -99,6 +139,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.6.2"
path_provider:
dependency: transitive
description:
name: path_provider
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.2.0"
pedantic:
dependency: transitive
description:
......@@ -106,6 +153,20 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.7.0"
provide:
dependency: "direct main"
description:
name: provide
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.2"
provider:
dependency: "direct main"
description:
name: provider
url: "https://pub.flutter-io.cn"
source: hosted
version: "3.0.0+1"
quiver:
dependency: transitive
description:
......@@ -113,6 +174,20 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.3"
rxdart:
dependency: "direct main"
description:
name: rxdart
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.21.0"
shared_preferences:
dependency: "direct main"
description:
name: shared_preferences
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.5.3+4"
sky_engine:
dependency: transitive
description: flutter
......@@ -125,6 +200,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.5.5"
sqflite:
dependency: transitive
description:
name: sqflite
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.6+3"
stack_trace:
dependency: transitive
description:
......@@ -146,6 +228,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.4"
synchronized:
dependency: transitive
description:
name: synchronized
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.0+1"
term_glyph:
dependency: transitive
description:
......@@ -167,6 +256,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.6"
uuid:
dependency: transitive
description:
name: uuid
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.2"
vector_math:
dependency: transitive
description:
......@@ -183,3 +279,4 @@ packages:
version: "0.0.29"
sdks:
dart: ">=2.2.2 <3.0.0"
flutter: ">=1.5.0 <2.0.0"
name: gmalpha_flutter
description: A new flutter module project.
# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# 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
#
# This version is used _only_ for the Runner app, which is used if you just do
# a `flutter run` or a `flutter make-host-app-editable`. It has no impact
# on any other native host app that you embed your Flutter project into.
version: 1.0.0+1
environment:
......@@ -28,20 +13,28 @@ dependencies:
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
dio: ^2.1.0
provider: ^3.0.0+1
provide: ^1.0.2
rxdart: ^0.21.0
flutter_screenutil: ^0.3.0
shared_preferences: ^0.5.1+2
cached_network_image: 1.1.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter_boost:
git:
url: 'https://github.com/alibaba/flutter_boost.git'
ref: '0.0.411'
native_flutter_transfer_plugin:
git:
url: 'git@git.wanmeizhensuo.com:mobile/native_flutter_transfer_plugin.git'
ref: '0.0.1'
# native_flutter_transfer_plugin:
# git:
# url: 'git@git.wanmeizhensuo.com:mobile/native_flutter_transfer_plugin.git'
# ref: '0.0.1'
# For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec
......@@ -56,6 +49,9 @@ flutter:
# like this:
assets:
- images/nav_back.png
- images/camera.png
- images/right_arrow.png
- images/icon_default_head.png
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.io/assets-and-images/#resolution-aware.
......@@ -83,12 +79,6 @@ flutter:
# see https://flutter.io/custom-fonts/#from-packages
# This section identifies your Flutter project as a module meant for
# embedding in a native host app. These identifiers should _not_ ordinarily
# be changed after generation - they are used to ensure that the tooling can
# maintain consistency when adding or modifying assets and plugins.
# They also do not have any bearing on your native host application's
# identifiers, which may be completely independent or the same as these.
module:
androidPackage: com.example.gmalpha_flutter
iosBundleIdentifier: com.example.gmalphaFlutter
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment