import 'package:flutter/material.dart'; class AboutPage extends StatefulWidget { const AboutPage({super.key}); @override State createState() => _AboutPageState(); } class _AboutPageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('关于')), body: const SingleChildScrollView( child: Column( children: [ ListTile( leading: Icon(Icons.info_outline_rounded), title: Text('开源许可'), trailing: Icon(Icons.arrow_forward_ios_rounded), ), ], ), ), ); } }