mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-14 17:25:47 +00:00
21 lines
569 B
Dart
21 lines
569 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:syncrow_app/features/layout/bloc/layout_cubit.dart';
|
|
|
|
class LayoutPage extends StatelessWidget {
|
|
const LayoutPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BlocProvider(
|
|
create: (context) => LayoutCubit(),
|
|
child: BlocBuilder<LayoutCubit, LayoutState>(
|
|
builder: (context, state) {
|
|
return const Center(
|
|
child: Text('Layout Page'),
|
|
);
|
|
},
|
|
));
|
|
}
|
|
}
|