import 'package:flutter/material.dart'; class AlgorithmFilingPage extends StatefulWidget { const AlgorithmFilingPage({super.key}); @override State createState() => _AlgorithmFilingPageState(); } class _AlgorithmFilingPageState extends State { @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Color(0xFF121213), appBar: AppBar( backgroundColor: Color(0xFF121213), scrolledUnderElevation: 0.0, 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( alignment: Alignment.topCenter, margin: EdgeInsets.only(top: 50), child: Column( mainAxisSize: MainAxisSize.min, children: [ Text( '妙语星河算法备案公示', style: TextStyle(color: Colors.grey), ), Container( margin: EdgeInsets.only(top: 30), child: Text( textAlign: TextAlign.center, '应事文本信息合成算法-1\n(网信算备310104297296101230057号)', style: TextStyle(color: Colors.grey), ), ), Container( margin: EdgeInsets.only(top: 10), child: Text( textAlign: TextAlign.center, '应事文本信息合成算法-2\n(网信算备310104297296101230065号)', style: TextStyle(color: Colors.grey), ), ), ], ), ), ); } }