mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
21 lines
561 B
Dart
21 lines
561 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:syncrow_app/features/smart/bloc/smart_cubit.dart';
|
|
|
|
class SmartPage extends StatelessWidget {
|
|
const SmartPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BlocProvider(
|
|
create: (context) => SmartCubit(),
|
|
child: BlocBuilder<SmartCubit, SmartState>(
|
|
builder: (context, state) {
|
|
return const Center(
|
|
child: Text('Smart Page'),
|
|
);
|
|
},
|
|
));
|
|
}
|
|
}
|