Files
pilipala/lib/pages/fav/view.dart
2023-05-11 00:14:00 +08:00

21 lines
403 B
Dart

import 'package:flutter/material.dart';
class FavPage extends StatefulWidget {
const FavPage({super.key});
@override
State<FavPage> createState() => _FavPageState();
}
class _FavPageState extends State<FavPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: false,
title: Text('我的收藏'),
),
);
}
}