commit to branch navigationbar

This commit is contained in:
Leon Astner 2025-08-02 03:04:20 +02:00
parent e8cc39387f
commit 0749836d17
4 changed files with 124 additions and 61 deletions

View file

@ -0,0 +1,24 @@
import 'package:flutter/material.dart';
class LibraryPage extends StatelessWidget {
const LibraryPage({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.library_music, size: 100, color: Colors.deepPurple),
SizedBox(height: 20),
Text(
'Library',
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
SizedBox(height: 10),
Text('Your music library'),
],
),
);
}
}