12345678910111213141516171819202122232425262728 |
- import 'package:flutter/material.dart';
- class AboutPage extends StatefulWidget {
- const AboutPage({super.key});
- @override
- State<AboutPage> createState() => _AboutPageState();
- }
- class _AboutPageState extends State<AboutPage> {
- @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),
- ),
- ],
- ),
- ),
- );
- }
- }
|