mirror of
https://github.com/nostrlabs-io/zap-stream-flutter.git
synced 2025-06-14 19:36:33 +00:00
17 lines
388 B
Dart
17 lines
388 B
Dart
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,
|
|
);
|
|
}
|
|
}
|