24 lines
629 B
Dart
24 lines
629 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class NowPlayingPage extends StatelessWidget {
|
|
const NowPlayingPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.music_note, size: 100, color: Colors.deepPurple),
|
|
SizedBox(height: 20),
|
|
Text(
|
|
'Now Playing',
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
|
|
),
|
|
SizedBox(height: 10),
|
|
Text('No music playing'),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|