import 'package:flutter/material.dart'; class ProblemPage extends StatefulWidget { const ProblemPage({super.key}); @override State createState() => _ProblemPageState(); } class _ProblemPageState extends State { @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Color(0xFF121213), appBar: AppBar( backgroundColor: Color(0xFF121213), title: Text( '我的账户', style: TextStyle(fontSize: 16, color: Colors.white), ), centerTitle: true, leading: IconButton( iconSize: 18, icon: Icon(Icons.arrow_back_ios_sharp), color: Colors.white, onPressed: () { // 处理返回操作 Navigator.pop(context); }, ), ), body: Container( margin: EdgeInsets.symmetric(horizontal: 16), child: Column( children: [ Container( alignment: Alignment.centerLeft, margin: EdgeInsets.only(top: 20), child: Text( '充值须知', style: TextStyle(fontSize: 13, color: Color(0xFFACACAC)), ), ), Container( margin: EdgeInsets.only(top: 12), child: Text( '充值须知充值须知充值须知充值须知充值须知充值须知充值须知充值须知充值须知', style: TextStyle(fontSize: 10, color: Color(0xFFACACAC)), ), ), Container( alignment: Alignment.centerLeft, margin: EdgeInsets.only(top: 20), child: Text( '充值异常与帮助', style: TextStyle(fontSize: 13, color: Color(0xFFACACAC)), ), ), Container( margin: EdgeInsets.only(top: 12), child: Text( '充值须知充值须知充值须知充值须知充值须知充值须知充值须知充值须知充值须知', style: TextStyle(fontSize: 10, color: Color(0xFFACACAC)), ), ), ], ), ), ); } }