Skip to content

Commit

Permalink
[style] 채팅 메뉴 타이틀(->실시간 쪽지 목록) 및 패딩 변경 #380
Browse files Browse the repository at this point in the history
  • Loading branch information
godeka committed May 29, 2024
1 parent 3152860 commit c4eaad9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions frontend/lib/screen/chatroom_list_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,14 @@ class _ChatroomListScreenState extends State<ChatroomListScreen> {
Widget build(BuildContext context) {
return Scaffold(
appBar: const TopAppBar(
title: '채팅방 목록',
title: '실시간 쪽지 목록',
),
body: ListView(
padding: const EdgeInsets.only(left: 20, right: 20, bottom: 20),
children: _buildChatroomItems(),
body: Padding(
padding: const EdgeInsets.only(top: 10),
child: ListView(
padding: const EdgeInsets.only(left: 20, right: 20, bottom: 20),
children: _buildChatroomItems(),
),
),
);
}
Expand Down

0 comments on commit c4eaad9

Please sign in to comment.