mirror of
https://github.com/foss42/apidash.git
synced 2025-08-06 13:51:20 +08:00
29 lines
689 B
Dart
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),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|