Remove yaru dep

This commit is contained in:
Henry Hiles 2025-01-05 20:49:45 -05:00
parent a15fae89eb
commit 26a2bd3f5e
21 changed files with 291 additions and 311 deletions

17
lib/screens/playlist.dart Normal file
View file

@ -0,0 +1,17 @@
import 'package:brook/widgets/appbar.dart';
import 'package:flutter/material.dart';
class PlaylistPage extends StatelessWidget {
const PlaylistPage({super.key});
@override
Widget build(BuildContext context) => Scaffold(
appBar: Appbar(title: "Playlist"),
body: Center(
child: Text(
"Coming soon...",
style: Theme.of(context).textTheme.displayMedium,
),
),
);
}