21 lines
748 B
Dart
21 lines
748 B
Dart
import 'package:didvan/views/widgets/state_handlers/empty_state.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class EmptyConnection extends StatelessWidget {
|
|
final VoidCallback onRetry;
|
|
const EmptyConnection({Key? key, required this.onRetry}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return EmptyState(
|
|
asset: 'lib/assets/images/empty_states/Connection.png',
|
|
height: 400,
|
|
title: 'اتصال اینترنت برقرار نیست',
|
|
titleColor: const Color.fromARGB(255, 0, 126, 167),
|
|
action: onRetry,
|
|
subtitle: 'لطفاً اتصال وایفای یا داده تلفن همراه خود را بررسی کنید.',
|
|
buttonTitle: 'تلاش مجدد' ,
|
|
);
|
|
}
|
|
}
|