页面结构初始化
This commit is contained in:
19
lib/pages/hot/view.dart
Normal file
19
lib/pages/hot/view.dart
Normal file
@ -0,0 +1,19 @@
|
||||
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('hot'),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user