navigation bar and colours custamized

This commit is contained in:
Leon Astner 2025-08-02 03:42:56 +02:00
parent 5c84b2fb59
commit 1ce7aea6b5
6 changed files with 167 additions and 51 deletions

View file

@ -5,19 +5,29 @@ class NowPlayingPage extends StatelessWidget {
@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'),
],
return Container(
color: const Color(0xFF121212),
child: const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.music_note, size: 100, color: Color(0xFF6366F1)),
SizedBox(height: 20),
Text(
'Now Playing',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
SizedBox(height: 10),
Text(
'No music playing',
style: TextStyle(color: Colors.grey),
),
],
),
),
);
}