2024-01-09 20:58:27 -05:00
|
|
|
import 'package:flutter/material.dart';
|
2024-06-02 11:04:19 -04:00
|
|
|
import 'package:flutter_translate/flutter_translate.dart';
|
|
|
|
|
|
|
|
import '../../theme/models/scale_scheme.dart';
|
2024-01-09 20:58:27 -05:00
|
|
|
|
2024-02-08 21:05:59 -05:00
|
|
|
class NoConversationWidget extends StatelessWidget {
|
|
|
|
const NoConversationWidget({super.key});
|
2024-01-09 20:58:27 -05:00
|
|
|
|
|
|
|
@override
|
|
|
|
// ignore: prefer_expression_function_bodies
|
|
|
|
Widget build(
|
|
|
|
BuildContext context,
|
2024-06-02 11:04:19 -04:00
|
|
|
) {
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
|
|
|
|
|
|
return Container(
|
|
|
|
width: double.infinity,
|
|
|
|
height: double.infinity,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
),
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Icon(
|
|
|
|
Icons.diversity_3,
|
|
|
|
color: scale.primaryScale.subtleBorder,
|
|
|
|
size: 48,
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
translate('chat.start_a_conversation'),
|
|
|
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
|
|
|
color: scale.primaryScale.subtleBorder,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2024-01-09 20:58:27 -05:00
|
|
|
}
|