mirror of
https://github.com/austinried/subtracks.git
synced 2026-02-11 07:12:44 +01:00
reorg ui into app
This commit is contained in:
26
lib/app/screens/now_playing_screen.dart
Normal file
26
lib/app/screens/now_playing_screen.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
|
||||
class NowPlayingScreen extends StatelessWidget {
|
||||
const NowPlayingScreen({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: Center(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text('Now Playing!'),
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
context.go('/album');
|
||||
},
|
||||
child: Text('Album...'),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user