1234567891011121314151617181920212223 |
- //隐私政策
- import 'package:flutter/material.dart';
- import 'package:sport/widgets/appbar.dart';
- import 'package:webview_flutter/webview_flutter.dart';
- class PrivacypolicyPage extends StatefulWidget {
- @override
- State<StatefulWidget> createState() => _PageState();
- }
- class _PageState extends State<PrivacypolicyPage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- backgroundColor: Colors.white,
- appBar: buildAppBar(context, title: "《隐私政策》"),
- body: Padding(
- padding: const EdgeInsets.all(12.0),
- child: WebView(initialUrl: "https://www.hiyd.com/privacypolicy.html",),
- ),
- );
- }
- }
|