mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-26 11:24:54 +00:00
Clean up code structure, remove unused imports, and update dependencies. No functional changes made, only code organization improvements.
18 lines
542 B
Dart
18 lines
542 B
Dart
// import 'package:flutter/material.dart';
|
|
// import 'package:syncrow_app/features/devices/view/widgets/devices_view_body.dart';
|
|
|
|
// class DevicesView extends StatelessWidget {
|
|
// const DevicesView({super.key});
|
|
|
|
// @override
|
|
// Widget build(BuildContext context) {
|
|
// print('built DevicesView');
|
|
// return Container(
|
|
// padding: const EdgeInsets.all(8),
|
|
// width: MediaQuery.of(context).size.width,
|
|
// height: MediaQuery.of(context).size.height,
|
|
// child: const DevicesViewBody(),
|
|
// );
|
|
// }
|
|
// }
|