Files
apidash/lib/widgets/widget_not_sent.dart
2025-04-05 21:14:34 +05:30

29 lines
689 B
Dart

import 'package:flutter/material.dart';
import 'package:apidash/consts.dart';
class NotSentWidget extends StatelessWidget {
const NotSentWidget({super.key});
@override
Widget build(BuildContext context) {
final color = Theme.of(context).colorScheme.secondary;
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.north_east_rounded,
size: 40,
color: color,
),
Text(
kLabelNotSent,
style:
Theme.of(context).textTheme.titleMedium?.copyWith(color: color),
),
],
),
);
}
}