mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
50 lines
1.4 KiB
Dart
50 lines
1.4 KiB
Dart
import 'package:awesome_extensions/awesome_extensions.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../tools/tools.dart';
|
|
|
|
class ProfileWidget extends ConsumerWidget {
|
|
const ProfileWidget({
|
|
required this.name,
|
|
this.pronouns,
|
|
super.key,
|
|
});
|
|
|
|
final String name;
|
|
final String? pronouns;
|
|
|
|
@override
|
|
// ignore: prefer_expression_function_bodies
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final textTheme = theme.textTheme;
|
|
|
|
return DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color: scale.primaryScale.border,
|
|
shape:
|
|
RoundedRectangleBorder(borderRadius: BorderRadius.circular(16))),
|
|
child: Column(children: [
|
|
Text(
|
|
name,
|
|
style: textTheme.headlineSmall,
|
|
textAlign: TextAlign.left,
|
|
).paddingAll(4),
|
|
if (pronouns != null && pronouns!.isNotEmpty)
|
|
Text(pronouns!, style: textTheme.bodyMedium).paddingLTRB(4, 0, 4, 4),
|
|
]),
|
|
);
|
|
}
|
|
|
|
@override
|
|
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
|
|
super.debugFillProperties(properties);
|
|
properties
|
|
..add(StringProperty('name', name))
|
|
..add(StringProperty('pronouns', pronouns));
|
|
}
|
|
}
|