2021-10-10 23:50:23 +08:00
|
|
|
// ignore_for_file: prefer_const_constructors
|
|
|
|
|
2021-12-28 20:26:23 +08:00
|
|
|
import 'dart:ffi';
|
|
|
|
|
2020-02-27 17:21:45 +08:00
|
|
|
import 'package:flutter/material.dart';
|
2023-04-22 10:49:55 +08:00
|
|
|
import 'package:flutter/services.dart';
|
2023-04-07 21:40:02 +08:00
|
|
|
import 'package:mop/api.dart';
|
2020-02-27 17:21:45 +08:00
|
|
|
import 'dart:async';
|
2020-02-28 12:20:44 +08:00
|
|
|
import 'dart:io';
|
2020-02-27 17:21:45 +08:00
|
|
|
import 'package:mop/mop.dart';
|
|
|
|
|
|
|
|
void main() => runApp(MyApp());
|
|
|
|
|
2023-04-22 10:49:55 +08:00
|
|
|
const toAppMessageChannel = MethodChannel("com.message.flutter_to_app");
|
|
|
|
|
2020-02-27 17:21:45 +08:00
|
|
|
class MyApp extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_MyAppState createState() => _MyAppState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _MyAppState extends State<MyApp> {
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2020-02-28 12:20:44 +08:00
|
|
|
init();
|
2020-02-27 17:21:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Platform messages are asynchronous, so we initialize in an async method.
|
2020-02-28 12:20:44 +08:00
|
|
|
Future<void> init() async {
|
2021-12-28 20:26:23 +08:00
|
|
|
|
2023-04-07 21:40:02 +08:00
|
|
|
//多服务器配置
|
2021-12-28 20:26:23 +08:00
|
|
|
FinStoreConfig storeConfigA = FinStoreConfig(
|
2023-04-07 21:40:02 +08:00
|
|
|
"22LyZEib0gLTQdU3MUauAfJ/xujwNfM6OvvEqQyH4igA",
|
|
|
|
"703b9026be3d6bc5",
|
2021-12-28 20:26:23 +08:00
|
|
|
"https://api.finclip.com",
|
2023-04-07 21:40:02 +08:00
|
|
|
cryptType: "SM",
|
2021-12-28 20:26:23 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
FinStoreConfig storeConfigB = FinStoreConfig(
|
2023-04-07 21:40:02 +08:00
|
|
|
"22LyZEib0gLTQdU3MUauAfJ/xujwNfM6OvvEqQyH4igA",
|
|
|
|
"703b9026be3d6bc5",
|
|
|
|
"https://finchat-mop-b.finogeeks.club"
|
2021-12-28 20:26:23 +08:00
|
|
|
);
|
|
|
|
List<FinStoreConfig> storeConfigs = [storeConfigA];
|
2023-04-07 21:40:02 +08:00
|
|
|
Config config = Config(storeConfigs);
|
|
|
|
config.language = LanguageType.English;
|
2023-04-10 11:23:11 +08:00
|
|
|
config.baseLoadingViewClass = "LoadingView";
|
2023-06-11 13:59:21 +08:00
|
|
|
config.appletDebugMode = BOOLState.BOOLStateTrue;
|
2023-04-07 21:40:02 +08:00
|
|
|
|
|
|
|
UIConfig uiconfig = UIConfig();
|
2021-12-28 20:26:23 +08:00
|
|
|
uiconfig.isAlwaysShowBackInDefaultNavigationBar = false;
|
|
|
|
uiconfig.isClearNavigationBarNavButtonBackground = false;
|
|
|
|
uiconfig.isHideFeedbackAndComplaints = true;
|
|
|
|
uiconfig.isHideBackHome = true;
|
2023-05-18 14:59:34 +08:00
|
|
|
uiconfig.isHideForwardMenu = true;
|
2021-12-28 20:26:23 +08:00
|
|
|
CapsuleConfig capsuleConfig = CapsuleConfig();
|
2023-04-07 21:40:02 +08:00
|
|
|
// capsuleConfig.capsuleBgLightColor = 0x33ff00ee;
|
|
|
|
capsuleConfig.capsuleCornerRadius = 16;
|
|
|
|
// capsuleConfig.capsuleRightMargin = 25;
|
2021-12-28 20:26:23 +08:00
|
|
|
uiconfig.capsuleConfig = capsuleConfig;
|
|
|
|
uiconfig.appletText = "applet";
|
2023-04-10 12:20:26 +08:00
|
|
|
uiconfig.loadingLayoutCls = "com.finogeeks.mop_example.CustomLoadingPage";
|
2021-12-28 20:26:23 +08:00
|
|
|
|
2023-04-07 21:40:02 +08:00
|
|
|
// if (Platform.isIOS) {
|
|
|
|
// final res = await Mop.instance.initialize(
|
|
|
|
// '22LyZEib0gLTQdU3MUauATBwgfnTCJjdr7FCnywmAEM=', 'bdfd76cae24d4313',
|
|
|
|
// apiServer: 'https://api.finclip.com',
|
|
|
|
// apiPrefix: '/api/v1/mop',
|
|
|
|
// uiConfig: uiconfig,
|
|
|
|
// finStoreConfigs: storeConfigs);
|
|
|
|
// print(res);
|
|
|
|
// } else if (Platform.isAndroid) {
|
|
|
|
// final res = await Mop.instance.initialize(
|
|
|
|
// '22LyZEib0gLTQdU3MUauATBwgfnTCJjdr7FCnywmAEM=', 'bdfd76cae24d4313',
|
|
|
|
// apiServer: 'https://api.finclip.com', apiPrefix: '/api/v1/mop');
|
|
|
|
// print(res);
|
|
|
|
// }
|
|
|
|
|
|
|
|
final res = await Mop.instance.initSDK(config, uiConfig: uiconfig);
|
|
|
|
print(res);
|
|
|
|
Mop.instance.registerAppletHandler(MyAppletHandler());
|
|
|
|
|
2020-02-27 17:21:45 +08:00
|
|
|
if (!mounted) return;
|
|
|
|
}
|
|
|
|
|
2021-12-28 20:26:23 +08:00
|
|
|
Widget _buildAppletItem(
|
|
|
|
String appletId, String itemName, VoidCallback tapAction) {
|
|
|
|
return GestureDetector(
|
|
|
|
onTap: tapAction,
|
|
|
|
child: Container(
|
|
|
|
padding: EdgeInsets.only(left: 7, right: 7),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(5)),
|
|
|
|
gradient: LinearGradient(
|
|
|
|
colors: const [Color(0xFF12767e), Color(0xFF0dabb8)],
|
|
|
|
stops: const [0.0, 1.0],
|
|
|
|
begin: Alignment.topCenter,
|
|
|
|
end: Alignment.bottomCenter,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: Center(
|
|
|
|
child: Text(
|
|
|
|
itemName,
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildAppletWidget(String appletId, String appletName) {
|
|
|
|
return Container(
|
|
|
|
margin: EdgeInsets.only(left: 20, top: 30, right: 20),
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
appletName,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18, fontWeight: FontWeight.w500, color: Colors.red),
|
|
|
|
),
|
|
|
|
SizedBox(
|
|
|
|
height: 10,
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
height: 100,
|
|
|
|
child: GridView.count(
|
|
|
|
crossAxisCount: 3,
|
|
|
|
childAspectRatio: 2,
|
|
|
|
crossAxisSpacing: 30,
|
|
|
|
// physics: NeverScrollableScrollPhysics(),
|
|
|
|
children: [
|
|
|
|
_buildAppletItem(appletId, "打开小程序", () {
|
2023-06-09 16:43:26 +08:00
|
|
|
TranstionStyle style = TranstionStyle.TranstionStyleUp;
|
|
|
|
if (appletId == "5f72e3559a6a7900019b5baa") {
|
|
|
|
style = TranstionStyle.TranstionStylePush;
|
|
|
|
}
|
|
|
|
RemoteAppletRequest request = RemoteAppletRequest(apiServer: 'https://api.finclip.com', appletId: appletId, transitionStyle: style);
|
|
|
|
Mop.instance.startApplet(request);
|
2023-06-08 23:29:36 +08:00
|
|
|
|
2023-06-09 16:43:26 +08:00
|
|
|
// Mop.instance.qrcodeOpenApplet('https://api.finclip.com/api/v1/mop/runtime/applet/-f-MGYzN2Q1YTYzMmI2MWIyZg--');
|
2023-06-08 23:29:36 +08:00
|
|
|
|
2021-12-28 20:26:23 +08:00
|
|
|
}),
|
|
|
|
_buildAppletItem(appletId, "finishRunningApplet", () {
|
|
|
|
Mop.instance.finishRunningApplet(appletId, true);
|
|
|
|
}),
|
|
|
|
_buildAppletItem(appletId, "removeUsedApplet", () {
|
|
|
|
Mop.instance.removeUsedApplet(appletId);
|
|
|
|
}),
|
|
|
|
// _buildAppletItem(appletId, "removeUsedApplet", () {
|
|
|
|
// Mop.instance.removeUsedApplet(appletId);
|
|
|
|
// }),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:51:50 +08:00
|
|
|
// 5e637a18cbfae4000170fa7a
|
2020-02-27 17:21:45 +08:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
|
|
home: Scaffold(
|
|
|
|
appBar: AppBar(
|
2020-02-28 12:20:44 +08:00
|
|
|
title: const Text('凡泰极客小程序 Flutter 插件'),
|
2020-02-27 17:21:45 +08:00
|
|
|
),
|
2021-12-28 20:26:23 +08:00
|
|
|
body: Column(
|
|
|
|
children: <Widget>[
|
|
|
|
_buildAppletWidget("5facb3a52dcbff00017469bd", "画图小程序"),
|
2023-04-07 21:40:02 +08:00
|
|
|
_buildAppletWidget("5f72e3559a6a7900019b5baa", "官方小程序"),
|
2023-06-11 13:59:21 +08:00
|
|
|
_buildAppletWidget("5f17f457297b540001e06ebb", "测试小程序"),
|
2021-12-28 20:26:23 +08:00
|
|
|
],
|
2020-02-28 12:20:44 +08:00
|
|
|
),
|
2020-02-27 17:21:45 +08:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2023-04-07 21:40:02 +08:00
|
|
|
|
|
|
|
class MyAppletHandler extends AppletHandler {
|
|
|
|
@override
|
|
|
|
Future<void> appletDidOpen(String appId) async {
|
|
|
|
print("appletDidOpen appId:$appId");
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool customCapsuleMoreButtonClick(String appId) {
|
2023-04-22 10:49:55 +08:00
|
|
|
print("customCapsuleMoreButtonClick---");
|
2023-06-08 23:29:36 +08:00
|
|
|
// toAppMessageChannel.invokeMethod("showCustomMoreView", {"appId": appId});
|
|
|
|
return false;
|
2023-04-07 21:40:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void forwardApplet(Map<String, dynamic> appletInfo) {
|
|
|
|
print("forwardApplet ---");
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<List<CustomMenu>> getCustomMenus(String appId) {
|
2023-06-08 23:29:36 +08:00
|
|
|
List<CustomMenu> customMenus = [
|
2023-06-11 13:59:21 +08:00
|
|
|
CustomMenu('CustomMenu1', 'https://img1.baidu.com/it/u=2878938773,1765835171&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500', '百度图标', 'common'),
|
|
|
|
CustomMenu('CustomMenu2', 'minipro_list_collect', '工程图标', 'common'),
|
|
|
|
CustomMenu('MyFriends', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSpvugSNLs9R7iopz_noeotAelvgzYj-74iCg&usqp=CAU', '谷歌图标', 'common'),
|
2023-06-09 16:43:26 +08:00
|
|
|
|
|
|
|
// CustomMenu('WXShareAPPFriends', 'https://img1.baidu.com/it/u=2878938773,1765835171&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500', '微信好朋友', 'common'),
|
|
|
|
// CustomMenu('WXShareAPPMoments', 'https://img2.baidu.com/it/u=3113705544,436318069&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500', '微信朋友圈', 'common'),
|
2023-06-08 23:29:36 +08:00
|
|
|
|
|
|
|
// CustomMenu('WXShareAPPFriends', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSpvugSNLs9R7iopz_noeotAelvgzYj-74iCg&usqp=CAU', '微信好朋友', 'common'),
|
|
|
|
// CustomMenu('WXShareAPPMoments', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR7cO4KB4e5-Ugdcq4pIyWunliH7LZRZzguKQ&usqp=CAU', '微信朋友圈', 'common'),
|
|
|
|
];
|
2023-04-07 21:40:02 +08:00
|
|
|
return Future.value(customMenus);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2023-06-08 23:29:36 +08:00
|
|
|
Future<void> getMobileNumber(Function(dynamic params) callback) {
|
2023-04-07 21:40:02 +08:00
|
|
|
// TODO: implement getMobileNumber
|
2023-06-08 23:29:36 +08:00
|
|
|
Map<String, dynamic> result = {"phone": '18607180143',"other":'abc123'};
|
|
|
|
print('getMobileNumber:' + result.toString());
|
|
|
|
callback(result);
|
|
|
|
return Future.value(null);
|
2023-04-07 21:40:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<Map<String, dynamic>> getUserInfo() {
|
|
|
|
// TODO: implement getUserInfo
|
|
|
|
throw UnimplementedError();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> onCustomMenuClick(String appId, String path, String menuId, String appInfo) {
|
|
|
|
// TODO: implement onCustomMenuClick
|
|
|
|
throw UnimplementedError();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|