1
0
Fork 0
phizclip-flutter-demo/lib/main.dart

125 lines
4.1 KiB
Dart
Raw Normal View History

2020-02-27 17:33:10 +08:00
import 'package:flutter/material.dart';
2020-02-28 12:36:13 +08:00
import 'dart:async';
import 'dart:io';
import 'package:mop/mop.dart';
2020-02-27 17:33:10 +08:00
void main() => runApp(MyApp());
2020-02-28 12:36:13 +08:00
class MyApp extends StatefulWidget {
2020-02-27 17:33:10 +08:00
@override
2020-02-28 12:36:13 +08:00
_MyAppState createState() => _MyAppState();
2020-02-27 17:33:10 +08:00
}
2020-02-28 12:36:13 +08:00
class _MyAppState extends State<MyApp> {
2020-02-27 17:33:10 +08:00
@override
2020-02-28 12:36:13 +08:00
void initState() {
super.initState();
init();
}
2020-02-27 17:33:10 +08:00
2020-02-28 12:36:13 +08:00
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> init() async {
if (Platform.isIOS) {
final res = await Mop.instance.initialize(
2020-04-22 21:49:11 +08:00
'22LyZEib0gLTQdU3MUauAZ0pZVbKTWGmNN6Lx8hXhIkA', '74bde5fad53a817c',
2020-02-28 12:36:13 +08:00
apiServer: 'https://mp.finogeeks.com', apiPrefix: '/api/v1/mop');
print(res);
} else if (Platform.isAndroid) {
final res = await Mop.instance.initialize(
2020-04-22 21:49:11 +08:00
'22LyZEib0gLTQdU3MUauAZ0pZVbKTWGmNN6Lx8hXhIkA', '74bde5fad53a817c',
2020-02-28 12:36:13 +08:00
apiServer: 'https://mp.finogeeks.com', apiPrefix: '/api/v1/mop');
print(res);
}
if (!mounted) return;
2020-02-27 17:33:10 +08:00
}
2020-03-07 19:51:04 +08:00
// 5e637a18cbfae4000170fa7a
2020-02-27 17:33:10 +08:00
@override
Widget build(BuildContext context) {
2020-02-28 12:36:13 +08:00
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('凡泰极客小程序 Flutter 插件'),
),
body: Center(
child: Container(
padding: EdgeInsets.only(
top: 20,
2020-02-27 17:33:10 +08:00
),
2020-02-28 12:36:13 +08:00
child: Column(
children: <Widget>[
Container(
2020-03-07 19:51:04 +08:00
width: 140,
2020-02-28 12:36:13 +08:00
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: FlatButton(
onPressed: () {
2020-04-22 21:49:11 +08:00
Mop.instance.openApplet('5ea03fa563cb900001d73863',
2020-03-07 19:51:04 +08:00
path: 'pages/index/index', query: '');
2020-02-28 12:36:13 +08:00
},
child: Text(
2020-03-07 19:51:04 +08:00
'打开画图小程序',
2020-02-28 12:36:13 +08:00
style: TextStyle(color: Colors.white),
),
),
),
SizedBox(height: 30),
Container(
2020-03-07 19:51:04 +08:00
width: 140,
2020-02-28 12:36:13 +08:00
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: FlatButton(
onPressed: () {
2020-04-22 21:49:11 +08:00
Mop.instance.openApplet('5ea0401463cb900001d73865');
2020-02-28 12:36:13 +08:00
},
child: Text(
'打开官方小程序',
style: TextStyle(color: Colors.white),
),
),
),
2020-03-07 19:51:04 +08:00
SizedBox(height: 30),
Container(
width: 140,
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: FlatButton(
onPressed: () {
2020-04-22 21:49:11 +08:00
Mop.instance.openApplet('5ea0412663cb900001d73867');
2020-03-07 19:51:04 +08:00
},
child: Text(
'我的对账单',
style: TextStyle(color: Colors.white),
),
),
),
2020-02-28 12:36:13 +08:00
],
2020-02-27 17:33:10 +08:00
),
2020-02-28 12:36:13 +08:00
),
2020-02-27 17:33:10 +08:00
),
),
);
}
}