|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:huixiang/generated/l10n.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';
|
|
|
|
|
|
|
|
class TreatyPage extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
State<StatefulWidget> createState() {
|
|
|
|
return _TreatyPage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _TreatyPage extends State<TreatyPage> {
|
|
|
|
var controller = new ScrollController();
|
|
|
|
String userType;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
// if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView();
|
|
|
|
// if (Platform.isIOS) WebView.platform = CupertinoWebView();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: MyAppBar(
|
|
|
|
title:S.of(context).yinsishengming,
|
|
|
|
titleColor: Colors.black,
|
|
|
|
background: Colors.transparent,
|
|
|
|
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/Privacy.html",
|
|
|
|
javascriptMode: JavascriptMode.unrestricted,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _textRich(var text) {
|
|
|
|
return Padding(
|
|
|
|
padding: EdgeInsets.only(bottom: 25),
|
|
|
|
child: Text(
|
|
|
|
text,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16.sp,
|
|
|
|
fontWeight: MyFontWeight.regular,
|
|
|
|
height: 1.7,
|
|
|
|
color: Colors.black),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|