mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-08-25 15:39:40 +00:00
23 lines
630 B
Dart
23 lines
630 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_app/utils/resource_manager/color_manager.dart';
|
|
|
|
class EmptyDevicesWidget extends StatelessWidget {
|
|
const EmptyDevicesWidget({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 48),
|
|
child: Text(
|
|
"No automations.\nEnable 'Show on Home Screen' to add automations",
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: ColorsManager.grayColor,
|
|
fontWeight: FontWeight.w400,
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|