🎉 Initial Commit
This commit is contained in:
27
lib/ui/shell.dart
Normal file
27
lib/ui/shell.dart
Normal file
@@ -0,0 +1,27 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'screens/library_screen.dart';
|
||||
import 'widgets/mini_player.dart';
|
||||
|
||||
class Shell extends StatelessWidget {
|
||||
const Shell({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Scaffold(
|
||||
body: Stack(
|
||||
children: [
|
||||
// Main Content
|
||||
Positioned.fill(
|
||||
child: LibraryScreen(),
|
||||
// Note: LibraryScreen might need padding at bottom to avoid occlusion by mini player
|
||||
// We can wrap LibraryScreen content or handle it there.
|
||||
// For now, let's just place it.
|
||||
),
|
||||
|
||||
// Mini Player
|
||||
Positioned(left: 0, right: 0, bottom: 0, child: MiniPlayer()),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user