22 lines
527 B
Dart
22 lines
527 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class UserSettingSugguestPage extends StatefulWidget {
|
|
const UserSettingSugguestPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_UserSettingSugguestPageState createState() =>
|
|
_UserSettingSugguestPageState();
|
|
}
|
|
|
|
class _UserSettingSugguestPageState extends State<UserSettingSugguestPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('帮助与反馈'),
|
|
),
|
|
body: Container(),
|
|
);
|
|
}
|
|
}
|