Files
zh-chat-flutter/lib/views/user/setting/about/index_page.dart
2022-10-31 10:28:49 +08:00

16 lines
397 B
Dart

import 'package:flutter/material.dart';
class UserSettingAboutPage extends StatefulWidget {
const UserSettingAboutPage({Key? key}) : super(key: key);
@override
_UserSettingAboutPageState createState() => _UserSettingAboutPageState();
}
class _UserSettingAboutPageState extends State<UserSettingAboutPage> {
@override
Widget build(BuildContext context) {
return Container();
}
}