mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
44 lines
1.1 KiB
Dart
44 lines
1.1 KiB
Dart
import 'package:awesome_extensions/awesome_extensions.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../../proto/proto.dart' as proto;
|
|
import '../../theme/theme.dart';
|
|
|
|
class ProfileWidget extends StatelessWidget {
|
|
const ProfileWidget({
|
|
required proto.Profile profile,
|
|
super.key,
|
|
}) : _profile = profile;
|
|
|
|
//
|
|
|
|
final proto.Profile _profile;
|
|
|
|
//
|
|
|
|
@override
|
|
// ignore: prefer_expression_function_bodies
|
|
Widget build(BuildContext context) {
|
|
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(
|
|
_profile.name,
|
|
style: textTheme.headlineSmall,
|
|
textAlign: TextAlign.left,
|
|
).paddingAll(4),
|
|
if (_profile.pronouns.isNotEmpty)
|
|
Text(_profile.pronouns, style: textTheme.bodyMedium)
|
|
.paddingLTRB(4, 0, 4, 4),
|
|
]),
|
|
);
|
|
}
|
|
}
|