import "package:flutter/material.dart"; class HotPage extends StatefulWidget { const HotPage({super.key}); @override State createState() => _HotPageState(); } class _HotPageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('热门'), ), ); } }