Skip to content

Commit

Permalink
#132 feat: 채팅 리스트뷰 텍스트 글자간격 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Nya128 committed Dec 2, 2023
1 parent 418409f commit 26090e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/chat/component/chat_list_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ class ChatListItem extends StatefulWidget {

class _ChatListItemState extends State<ChatListItem> {
final TextStyle nicknameTextStyle = const TextStyle(
fontSize: 14.0, fontWeight: FontWeight.w500, color: GRAY_4_COLOR);
letterSpacing: -0.9, fontSize: 14.0, fontWeight: FontWeight.w500, color: GRAY_4_COLOR);
final TextStyle lastMsgTextStyle = const TextStyle(
fontSize: 14.0, fontWeight: FontWeight.w400, color: GRAY_4_COLOR);
letterSpacing: -0.6, fontSize: 14.0, fontWeight: FontWeight.w400, color: GRAY_4_COLOR);
final TextStyle dateTextStyle = const TextStyle(
fontSize: 12.0, fontWeight: FontWeight.w400, color: GRAY_2_COLOR);
letterSpacing: -0.9, fontSize: 12.0, fontWeight: FontWeight.w400, color: GRAY_2_COLOR);
final TextStyle numOfUnreadChatsTextStyle = const TextStyle(
fontSize: 10.0, fontWeight: FontWeight.w400, color: Colors.white);

Expand Down

0 comments on commit 26090e7

Please sign in to comment.