mirror of
https://github.com/nostrlabs-io/zap-stream-flutter.git
synced 2025-06-15 19:48:23 +00:00
init
This commit is contained in:
16
lib/pages/layout.dart
Normal file
16
lib/pages/layout.dart
Normal file
@ -0,0 +1,16 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
|
||||
class LayoutScreen extends StatelessWidget {
|
||||
final StatefulNavigationShell navigationShell;
|
||||
|
||||
const LayoutScreen(this.navigationShell, {super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: navigationShell,
|
||||
backgroundColor: Colors.black,
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user