chore: more upgrades for channel_header_theme.dart

* Renamed:
  * title -> titleStyle
  * subtitle -> subtitleStyle
* Added
  * ==
  * hashcode
  * debugFillProperties
  * lerp
This commit is contained in:
groovinchip
2021-07-27 13:33:58 -04:00
parent 8bf45f8501
commit 3a072fc836
7 changed files with 66 additions and 21 deletions
@@ -169,7 +169,7 @@ class ChannelHeader extends StatelessWidget implements PreferredSizeWidget {
title ??
ChannelName(
textStyle: chatThemeData
.channelTheme.channelHeaderTheme.title,
.channelTheme.channelHeaderTheme.titleStyle,
),
const SizedBox(height: 2),
subtitle ??
@@ -177,7 +177,7 @@ class ChannelHeader extends StatelessWidget implements PreferredSizeWidget {
showTypingIndicator: showTypingIndicator,
channel: channel,
textStyle: chatThemeData
.channelTheme.channelHeaderTheme.subtitle,
.channelTheme.channelHeaderTheme.subtitleStyle,
),
],
),