This repository has been archived on 2025-03-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
brook/lib/screens/playlist_page.dart
2025-01-03 18:33:59 -05:00

17 lines
443 B
Dart

import 'package:canal/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,
),
),
);
}