Initial commit
This commit is contained in:
parent
32e425f961
commit
e94d583b8b
67 changed files with 2516 additions and 698 deletions
17
lib/screens/playlist_page.dart
Normal file
17
lib/screens/playlist_page.dart
Normal file
|
@ -0,0 +1,17 @@
|
|||
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,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
Reference in a new issue