mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-06-14 01:23:01 -04:00
theming work, revamp contact invitation
This commit is contained in:
parent
3c95c9d1a3
commit
ae841ec42a
26 changed files with 504 additions and 507 deletions
|
@ -33,11 +33,6 @@ class ChatComponentWidget extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// final theme = Theme.of(context);
|
||||
// final scale = theme.extension<ScaleScheme>()!;
|
||||
// final scaleConfig = theme.extension<ScaleConfig>()!;
|
||||
// final textTheme = theme.textTheme;
|
||||
|
||||
// Get the account info
|
||||
final accountInfo = context.watch<AccountInfoCubit>().state;
|
||||
|
||||
|
@ -125,7 +120,7 @@ class ChatComponentWidget extends StatelessWidget {
|
|||
return Column(
|
||||
children: [
|
||||
Container(
|
||||
height: 48,
|
||||
height: 40,
|
||||
decoration: BoxDecoration(
|
||||
color: scale.border,
|
||||
),
|
||||
|
@ -141,9 +136,10 @@ class ChatComponentWidget extends StatelessWidget {
|
|||
)),
|
||||
const Spacer(),
|
||||
IconButton(
|
||||
iconSize: 24,
|
||||
icon: Icon(Icons.close, color: scale.borderText),
|
||||
onPressed: _onClose)
|
||||
.paddingLTRB(16, 0, 16, 0)
|
||||
.paddingLTRB(0, 0, 8, 0)
|
||||
]),
|
||||
),
|
||||
DecoratedBox(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue