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

18 lines
359 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("xxxxx"),
),
);
}
}