mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
AC devices page implemented
AC Cubit Add New Devices Cubit Arch will be used Devices Cubit (for devices categories, and devices page) { AC cubit, Lights cubit. ... } Replaced AssetsManager with Assets Class (auto generated)
This commit is contained in:
@ -8,13 +8,14 @@ class LayoutPage extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BlocProvider(
|
||||
create: (context) => LayoutCubit(),
|
||||
child: BlocBuilder<LayoutCubit, LayoutState>(
|
||||
builder: (context, state) {
|
||||
return const Center(
|
||||
child: Text('Layout Page'),
|
||||
);
|
||||
},
|
||||
));
|
||||
create: (context) => LayoutCubit(),
|
||||
child: BlocBuilder<LayoutCubit, LayoutState>(
|
||||
builder: (context, state) {
|
||||
return const Center(
|
||||
child: Text('Layout Page'),
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user