Files
syncrow-app/lib/features/devices/view/devices_view.dart
Mohammad Salameh 127d3a0295 Refactor code structure and update dependencies
Clean up code structure, remove unused imports, and update dependencies.
No functional changes made, only code organization improvements.
2024-04-03 01:55:50 +03:00

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(),
// );
// }
// }