WallPaper_ZZH_Flutter/wallpaper/lib/pages/mypage/mypage_view.dart
2024-05-11 14:20:55 +08:00

18 lines
363 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) {
return Scaffold(
appBar: AppBar(
title: const Text("我的"),
),
body: const Center(
child: Text("我的..."),
),
);
}
}