reorg ui into app

This commit is contained in:
austinried
2025-11-03 10:35:44 +09:00
parent 2df86f4faa
commit f1c734d432
13 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
class RootShellScreen extends StatelessWidget {
const RootShellScreen({
super.key,
required this.child,
});
final Widget child;
@override
Widget build(BuildContext context) {
return Scaffold(
body: child,
bottomNavigationBar: BottomAppBar(
child: Center(
child: TextButton(
onPressed: () {
context.push('/now-playing');
},
child: Text('Now playing...'),
),
),
),
);
}
}