team-2/CHALLENGE_2/sleepysound/lib/pages/now_playing_page.dart

25 lines
629 B
Dart
Raw Normal View History

2025-08-02 03:04:20 +02:00
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'),
],
),
);
}
}