You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
2 years ago
|
import 'dart:io';
|
||
|
|
||
|
import 'package:flutter/cupertino.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:huixiang/utils/font_weight.dart';
|
||
|
import 'package:huixiang/view_widget/my_appbar.dart';
|
||
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||
|
import 'package:webview_flutter/webview_flutter.dart';
|
||
|
import 'package:webview_flutter/src/webview_cupertino.dart';
|
||
|
|
||
|
class UserVipServicePage extends StatefulWidget {
|
||
|
@override
|
||
|
State<StatefulWidget> createState() {
|
||
|
return _UserVipServicePage();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class _UserVipServicePage extends State<UserVipServicePage> with WidgetsBindingObserver {
|
||
|
var controller = new ScrollController();
|
||
|
|
||
|
@override
|
||
|
void initState() {
|
||
|
super.initState();
|
||
|
WidgetsBinding.instance.addObserver(this);
|
||
|
if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView();
|
||
|
if (Platform.isIOS) WebView.platform = CupertinoWebView();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: MyAppBar(
|
||
|
title:"回乡VIP会员卡规则协议",
|
||
|
titleColor: Colors.black,
|
||
|
background: Color(0xFFFFFFFF),
|
||
|
leadingColor: Colors.black,
|
||
|
),
|
||
|
body: Container(
|
||
|
width: MediaQuery.of(context).size.width,
|
||
|
height: MediaQuery.of(context).size.height,
|
||
|
alignment: Alignment.center,
|
||
|
child:
|
||
|
WebView(
|
||
|
initialUrl: "http://huixiang.lotus-wallet.com/vip.html",
|
||
|
javascriptMode: JavascriptMode.unrestricted,
|
||
|
)),
|
||
|
);
|
||
|
}
|
||
|
}
|