privacypolicy_page.dart 669 B

1234567891011121314151617181920212223
  1. //隐私政策
  2. import 'package:flutter/material.dart';
  3. import 'package:sport/widgets/appbar.dart';
  4. import 'package:webview_flutter/webview_flutter.dart';
  5. class PrivacypolicyPage extends StatefulWidget {
  6. @override
  7. State<StatefulWidget> createState() => _PageState();
  8. }
  9. class _PageState extends State<PrivacypolicyPage> {
  10. @override
  11. Widget build(BuildContext context) {
  12. return Scaffold(
  13. backgroundColor: Colors.white,
  14. appBar: buildAppBar(context, title: "《隐私政策》"),
  15. body: Padding(
  16. padding: const EdgeInsets.all(12.0),
  17. child: WebView(initialUrl: "https://www.hiyd.com/privacypolicy.html",),
  18. ),
  19. );
  20. }
  21. }