swing_account/lib/pages/profile_page.dart
2024-12-27 13:56:59 +08:00

17 lines
374 B
Dart

import 'package:flutter/material.dart';
class ProfilePage extends StatelessWidget {
const ProfilePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('我的'),
),
body: const Center(
child: Text('个人中心开发中...'),
),
);
}
}