mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-23 14:40:58 -04:00
wallpapers and ui cleanup
This commit is contained in:
parent
77c68aa45f
commit
6bd60207d8
32 changed files with 17947 additions and 150 deletions
|
@ -14,14 +14,15 @@ ChatTheme makeChatTheme(
|
|||
secondaryColor: scaleConfig.preferBorders
|
||||
? scale.secondaryScale.calloutText
|
||||
: scale.secondaryScale.calloutBackground,
|
||||
backgroundColor: scale.grayScale.appBackground.withAlpha(192),
|
||||
backgroundColor:
|
||||
scale.grayScale.appBackground.withAlpha(scaleConfig.wallpaperAlpha),
|
||||
messageBorderRadius: scaleConfig.borderRadiusScale * 16,
|
||||
bubbleBorderSide: scaleConfig.preferBorders
|
||||
? BorderSide(
|
||||
color: scale.primaryScale.calloutBackground,
|
||||
width: 2,
|
||||
)
|
||||
: null,
|
||||
: BorderSide(width: 2, color: Colors.black.withAlpha(96)),
|
||||
sendButtonIcon: Image.asset(
|
||||
'assets/icon-send.png',
|
||||
color: scaleConfig.preferBorders
|
||||
|
@ -86,7 +87,8 @@ ChatTheme makeChatTheme(
|
|||
receivedEmojiMessageTextStyle: const TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 64,
|
||||
));
|
||||
),
|
||||
dateDividerTextStyle: textTheme.labelSmall!);
|
||||
|
||||
class EditedChatTheme extends ChatTheme {
|
||||
const EditedChatTheme({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue