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 4cc6c7e commit a2a40f2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions frontend/lib/screen/cafe_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,10 @@ class _CafeDetailsState extends State<CafeDetails>
return Scaffold(
appBar: TopAppBar(
titleWidget: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
SizedBox(
width: 280,
width: 240,
child: Text(
widget.cafeName,
style: const TextStyle(
Expand All @@ -171,10 +172,13 @@ class _CafeDetailsState extends State<CafeDetails>
),
(myCafe.cafeId != widget.cafeId)
? Container()
: const Icon(
Icons.circle,
size: 13,
color: Color(0xFFFF6C3E),
: const Padding(
padding: EdgeInsets.only(right: 10),
child: Icon(
Icons.circle,
size: 13,
color: Color(0xFFFF6C3E),
),
),
],
),
Expand Down

0 comments on commit a2a40f2

Please sign in to comment.