浏览代码

1.webview添加进度条

2.自购省添加免单请求参数
tags/0.0.4+7
“yanghuaxuan” 4 年前
父节点
当前提交
33e6d216a3
共有 4 个文件被更改,包括 140 次插入70 次删除
  1. +28
    -27
      example/android/app/build.gradle
  2. +13
    -6
      lib/pages/goods_details_page/goods_details_page.dart
  3. +94
    -32
      lib/pages/webview/base_webview.dart
  4. +5
    -5
      lib/widgets/goods_details/footer/goods_details_footer_widget.dart

+ 28
- 27
example/android/app/build.gradle 查看文件

@@ -108,33 +108,33 @@ android {




// 应用信息配置 // 应用信息配置
// productFlavors { productFlavors {
// // 智夜生活 // 智夜生活
// zhiying { zhiying {
// applicationId "cn.zhios.zhiying" applicationId "cn.zhios.zhiying"
// versionCode 31 versionCode 32
// dimension "app" dimension "app"
// versionName '1.2.31' versionName '1.2.32'
// // 签名信息 // 签名信息
// signingConfig signingConfigs.zhiying signingConfig signingConfigs.zhiying
// } }
// } }
// // 打包脚本
// // 打包脚本 android.applicationVariants.all { variant ->
// android.applicationVariants.all { variant -> if (variant.buildType.name != "debug") {
// if (variant.buildType.name != "debug") { variant.getPackageApplicationProvider().get().outputDirectory = new File(project.rootDir.absolutePath + "/app/build/outputs/apk")
// variant.getPackageApplicationProvider().get().outputDirectory = new File(project.rootDir.absolutePath + "/app/build/outputs/apk") }
// } variant.outputs.all { output ->
// def outputFile = output.outputFile
// variant.outputs.all { output -> if (outputFile != null && outputFile.name.endsWith('.apk')) {
// def outputFile = output.outputFile //这里修改apk文件名
// if (outputFile != null && outputFile.name.endsWith('.apk')) { def fileName = "${variant.productFlavors[0].name}_${releaseTime()}01_&V${variant.productFlavors[0].versionCode}.apk"
// //这里修改apk文件名 outputFileName = fileName
// def fileName = "${variant.productFlavors[0].name}_${releaseTime()}01_&V${variant.productFlavors[0].versionCode}.apk" }
// outputFileName = fileName }
// } }
// }
// }


configurations.all { configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details -> resolutionStrategy.eachDependency { DependencyResolveDetails details ->
@@ -215,6 +215,7 @@ MobSDK {
Wechat { Wechat {
appId "wx598aaef252cd78e4" appId "wx598aaef252cd78e4"
appSecret "d2fc2edf9ece746765b3bfc0bf1b230e" appSecret "d2fc2edf9ece746765b3bfc0bf1b230e"
shareByAppClient true
withShareTicket true withShareTicket true
bypassApproval false bypassApproval false
enable true enable true


+ 13
- 6
lib/pages/goods_details_page/goods_details_page.dart 查看文件

@@ -19,8 +19,9 @@ import 'notifier/goods_details_appbar_color_notifier.dart';


class GoodsDetailsPage extends StatefulWidget { class GoodsDetailsPage extends StatefulWidget {
final Map<String, dynamic> data; final Map<String, dynamic> data;
final bool isFree;


GoodsDetailsPage(this.data, {Key key}) : super(key: key); GoodsDetailsPage(this.data, {this.isFree = false, Key key}) : super(key: key);


@override @override
_GoodsDetailsPageState createState() => _GoodsDetailsPageState(); _GoodsDetailsPageState createState() => _GoodsDetailsPageState();
@@ -43,9 +44,11 @@ class _GoodsDetailsPageState extends State<GoodsDetailsPage> {
ChangeNotifierProvider.value(value: GoodsDetailsAppBarColorNotifier()), ChangeNotifierProvider.value(value: GoodsDetailsAppBarColorNotifier()),
], ],
child: BlocProvider<GoodsDetailsPageBloc>( child: BlocProvider<GoodsDetailsPageBloc>(
create: (_) => GoodsDetailsPageBloc(repository: GoodsDetailsPageRepository()) create: (_) => GoodsDetailsPageBloc(repository: GoodsDetailsPageRepository())..add(GoodsDetailsPageInitEvent(model: widget?.data)),
..add(GoodsDetailsPageInitEvent(model: widget?.data)), child: GoodsDetailsContainer(
child: GoodsDetailsContainer(widget?.data), widget?.data,
isFree: widget?.isFree,
),
), ),
); );
} }
@@ -53,8 +56,9 @@ class _GoodsDetailsPageState extends State<GoodsDetailsPage> {


class GoodsDetailsContainer extends StatefulWidget { class GoodsDetailsContainer extends StatefulWidget {
final Map<String, dynamic> data; final Map<String, dynamic> data;
final bool isFree;


const GoodsDetailsContainer(this.data); const GoodsDetailsContainer(this.data, {this.isFree = false});


@override @override
_GoodsDetailsContainerState createState() => _GoodsDetailsContainerState(); _GoodsDetailsContainerState createState() => _GoodsDetailsContainerState();
@@ -160,7 +164,10 @@ class _GoodsDetailsContainerState extends State<GoodsDetailsContainer> {
)), )),


/// 底部 /// 底部
bottomNavigationBar: GoodsDetailsFooterWidget(!EmptyUtil.isEmpty(datas) ? datas[datas.length - 1] : null), bottomNavigationBar: GoodsDetailsFooterWidget(
!EmptyUtil.isEmpty(datas) ? datas[datas.length - 1] : null,
isFree: widget.isFree,
),
); );
} }




+ 94
- 32
lib/pages/webview/base_webview.dart 查看文件

@@ -1,3 +1,4 @@
import 'dart:async';
import 'dart:io'; import 'dart:io';


import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
@@ -24,6 +25,8 @@ class _BaseWebviewState extends State<BaseWebview> {
String _title; String _title;
WebViewController _webViewController; WebViewController _webViewController;
bool _isiOSReview = false; bool _isiOSReview = false;
double progress = 0.0;
Timer timer;


@override @override
void initState() { void initState() {
@@ -31,6 +34,37 @@ class _BaseWebviewState extends State<BaseWebview> {
_settingIosReview(); _settingIosReview();
super.initState(); super.initState();
} }

@override
void dispose() {
// TODO: implement dispose
timer?.cancel();
super.dispose();
}

loadData() {
print("加载数据");
progress = 0.0;
if(timer?.isActive??false){
timer?.cancel();
}
timer = Timer.periodic(Duration(milliseconds: 10), (timer) {
if (progress > 0.8) {
progress = progress + 0.01;
} else if (progress > 0.7) {
progress = progress + 0.002;
} else if (progress > 0.5) {
progress += 0.005;
} else {
progress = progress + 0.01;
}
if (progress > 1.1) {
timer.cancel();
}
setState(() {});
});
}

void _settingIosReview() async { void _settingIosReview() async {
String is_ios_review = await SharedPreferencesUtil.getStringValue(GlobalConfig.IS_IOS_REVIEW, defaultVal: '0'); String is_ios_review = await SharedPreferencesUtil.getStringValue(GlobalConfig.IS_IOS_REVIEW, defaultVal: '0');
setState(() { setState(() {
@@ -40,42 +74,53 @@ class _BaseWebviewState extends State<BaseWebview> {
} }
}); });
} }

@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: _createNav(), appBar: _createNav(),
backgroundColor: Colors.white, backgroundColor: Colors.white,
body: WebView( body: Stack(
initialUrl: _url, children: <Widget>[
javascriptMode: JavascriptMode.unrestricted, WebView(
onWebViewCreated: (WebViewController webViewController) { initialUrl: _url,
_webViewController = webViewController; javascriptMode: JavascriptMode.unrestricted,
}, onWebViewCreated: (WebViewController webViewController) {
navigationDelegate: (NavigationRequest request) async{ _webViewController = webViewController;
// 解决Android的拼多多webview 转发的问题 loadData();
if(Platform.isAndroid){ },
String url = request?.url?.toString(); navigationDelegate: (NavigationRequest request) async {
if(!EmptyUtil.isEmpty(url) && !url.startsWith('https://') && !url.startsWith('http://')){ // 解决Android的拼多多webview 转发的问题
Logger.log('navigation url = $url'); if (Platform.isAndroid) {
// if(await canLaunch(url)){ String url = request?.url?.toString();
// await launch(url); if (!EmptyUtil.isEmpty(url) && !url.startsWith('https://') && !url.startsWith('http://')) {
// } Logger.log('navigation url = $url');
return NavigationDecision.prevent; // if(await canLaunch(url)){
} // await launch(url);
} // }
return NavigationDecision.navigate; return NavigationDecision.prevent;
}, }
onPageStarted: (String url) { }
print('Page started loading: $url'); return NavigationDecision.navigate;
}, },
onPageFinished: (String url) { onPageStarted: (String url) {
print('Page finished loading: $url'); print('Page started loading: $url');
_webViewController.getTitle().then((title) { },
_title = title; onPageFinished: (String url) {
setState(() {}); if(progress<0.8){
}); progress = 0.8;
}, }
gestureNavigationEnabled: true, setState(() {});
print('Page finished loading: $url');
_webViewController.getTitle().then((title) {
_title = title;
setState(() {});
});
},
gestureNavigationEnabled: true,
),
progress <= 1.0 ? _createProgress() : Container(),
],
), ),
); );
} }
@@ -115,11 +160,28 @@ class _BaseWebviewState extends State<BaseWebview> {
), ),
), ),
trailing: GestureDetector( trailing: GestureDetector(
child: _isiOSReview ? Container() : Icon(Icons.refresh, size: 20,), child: _isiOSReview
? Container()
: Icon(
Icons.refresh,
size: 20,
),
onTap: () { onTap: () {
_webViewController.reload(); _webViewController.reload();
loadData();
}, },
), ),
); );
} }

_createProgress() {
return Container(
constraints: BoxConstraints(maxHeight: 2),
child: LinearProgressIndicator(
backgroundColor: Colors.white,
valueColor: AlwaysStoppedAnimation<Color>(Colors.red),
value: progress,
),
);
}
} }

+ 5
- 5
lib/widgets/goods_details/footer/goods_details_footer_widget.dart 查看文件

@@ -20,8 +20,8 @@ import 'package:zhiying_comm/util/turn_chain/turn_chain_util.dart';
/// ///
class GoodsDetailsFooterWidget extends StatelessWidget { class GoodsDetailsFooterWidget extends StatelessWidget {
final Map<String, dynamic> model; final Map<String, dynamic> model;
final bool isFree;
const GoodsDetailsFooterWidget(this.model); const GoodsDetailsFooterWidget(this.model,{this.isFree});


@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
@@ -42,8 +42,8 @@ class GoodsDetailsFooterWidget extends StatelessWidget {


class _GoodsDetailsFooterContainer extends StatefulWidget { class _GoodsDetailsFooterContainer extends StatefulWidget {
final Map<String, dynamic> model; final Map<String, dynamic> model;
final bool isFree;
const _GoodsDetailsFooterContainer(this.model, {Key key}) : super(key: key); const _GoodsDetailsFooterContainer(this.model, {this.isFree,Key key}) : super(key: key);


@override @override
_GoodsDetailsFooterContainerState createState() => _GoodsDetailsFooterContainerState(); _GoodsDetailsFooterContainerState createState() => _GoodsDetailsFooterContainerState();
@@ -104,7 +104,7 @@ class _GoodsDetailsFooterContainerState extends State<_GoodsDetailsFooterContain


/// 自购省 /// 自购省
void _saveMoneyOnClick(GoodsDetailsFooterModel model) async { void _saveMoneyOnClick(GoodsDetailsFooterModel model) async {
await TurnChainUtil.openReceiveCoupon(context, _user, model?.good_id, model?.provider, model?.convertArgs?.toJson()); await TurnChainUtil.openReceiveCoupon(context, _user, model?.good_id, model?.provider, model?.convertArgs?.toJson(),isFree: widget?.isFree);
} }


@override @override


||||||
x
 
000:0
正在加载...
取消
保存