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