Remove yaru dep
This commit is contained in:
parent
a15fae89eb
commit
26a2bd3f5e
21 changed files with 291 additions and 311 deletions
17
lib/screens/playlist.dart
Normal file
17
lib/screens/playlist.dart
Normal 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,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
Reference in a new issue