2024-09-16 15:07:04 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class FavoritePage extends StatefulWidget {
|
|
|
|
const FavoritePage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
_FavoritePageState createState() => _FavoritePageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _FavoritePageState extends State<FavoritePage> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
backgroundColor: Colors.black,
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('Favorites'),
|
|
|
|
),
|
2024-10-17 13:16:39 +00:00
|
|
|
body: Text("Hello")
|
2024-09-16 15:07:04 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|