mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
42 lines
1.1 KiB
Dart
42 lines
1.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_translate/flutter_translate.dart';
|
|
|
|
import '../../theme/models/scale_scheme.dart';
|
|
|
|
class NoConversationWidget extends StatelessWidget {
|
|
const NoConversationWidget({super.key});
|
|
|
|
@override
|
|
// ignore: prefer_expression_function_bodies
|
|
Widget build(
|
|
BuildContext context,
|
|
) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
|
|
return DecoratedBox(
|
|
decoration: BoxDecoration(
|
|
color: scale.primaryScale.appBackground,
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(
|
|
Icons.diversity_3,
|
|
color: scale.primaryScale.subtleBorder,
|
|
size: 48,
|
|
),
|
|
Text(
|
|
textAlign: TextAlign.center,
|
|
translate('chat.start_a_conversation'),
|
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
|
color: scale.primaryScale.subtleBorder,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|