File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
frontend/lib/widgets/user Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
import 'package:flutter/material.dart' ;
2
+ import 'package:flutter/widgets.dart' ;
2
3
import 'package:frontend/widgets/profile_img.dart' ;
3
4
import 'package:frontend/widgets/thermometer/thermometer.dart' ;
4
5
@@ -24,8 +25,10 @@ class UserDetails extends StatelessWidget {
24
25
mainAxisAlignment: MainAxisAlignment .spaceBetween,
25
26
children: [
26
27
Row (
27
- mainAxisAlignment: MainAxisAlignment .center,
28
28
children: [
29
+ const SizedBox (
30
+ width: 10 ,
31
+ ),
29
32
(company == '무소속' )
30
33
? const ProfileImgMedium (
31
34
isLocal: true ,
@@ -36,7 +39,7 @@ class UserDetails extends StatelessWidget {
36
39
logoUrl: "assets/$company -logo.png" ,
37
40
),
38
41
const SizedBox (
39
- width: 35 ,
42
+ width: 30 ,
40
43
),
41
44
Column (
42
45
crossAxisAlignment: CrossAxisAlignment .start,
@@ -54,7 +57,7 @@ class UserDetails extends StatelessWidget {
54
57
),
55
58
Text (
56
59
position,
57
- style: const TextStyle (fontSize: 18 ),
60
+ style: const TextStyle (fontSize: 16 ),
58
61
),
59
62
],
60
63
),
You can’t perform that action at this time.
0 commit comments