WallPaper_ZZH_Flutter/wallpaper/lib/pages/mypage/mypage_view.dart
2024-05-15 17:41:13 +08:00

34 lines
813 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
class MyPageView extends GetView {
const MyPageView({super.key});
@override
Widget build(BuildContext context) {
const title = '我的';
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: const Text(title),
),
body: ListView(
children: const <Widget>[
ListTile(
leading: Icon(Icons.web),
title: Text('隐私协议'),
),
ListTile(
leading: Icon(Icons.web),
title: Text('用户协议'),
),
ListTile(
leading: Icon(Icons.info),
title: Text('系统版本 v1.0'),
),
],
),
);
}
}