File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -160,9 +160,10 @@ class _CafeDetailsState extends State<CafeDetails>
160
160
return Scaffold (
161
161
appBar: TopAppBar (
162
162
titleWidget: Row (
163
+ mainAxisAlignment: MainAxisAlignment .spaceBetween,
163
164
children: [
164
165
SizedBox (
165
- width: 280 ,
166
+ width: 240 ,
166
167
child: Text (
167
168
widget.cafeName,
168
169
style: const TextStyle (
@@ -171,10 +172,13 @@ class _CafeDetailsState extends State<CafeDetails>
171
172
),
172
173
(myCafe.cafeId != widget.cafeId)
173
174
? Container ()
174
- : const Icon (
175
- Icons .circle,
176
- size: 13 ,
177
- color: Color (0xFFFF6C3E ),
175
+ : const Padding (
176
+ padding: EdgeInsets .only (right: 10 ),
177
+ child: Icon (
178
+ Icons .circle,
179
+ size: 13 ,
180
+ color: Color (0xFFFF6C3E ),
181
+ ),
178
182
),
179
183
],
180
184
),
You can’t perform that action at this time.
0 commit comments