This repository has been archived on 2025-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
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,
),
),
);
}