Skip to content

Commit 143cd2c

Browse files
Formatted file.
1 parent 1615a37 commit 143cd2c

File tree

1 file changed

+39
-12
lines changed

1 file changed

+39
-12
lines changed

packages/uni_app/lib/view/academic_path/academic_path.dart

+39-12
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,45 @@ class AcademicPathPageViewState extends GeneralPageViewState
4242
controller: tabController,
4343
dividerHeight: 1,
4444
tabs: [
45-
Tab(child:
46-
Row(children:
47-
[const Icon(UniIcons.courses),
48-
Expanded(child: Text(S.of(context).courses, overflow: TextOverflow.ellipsis),),],),),
49-
Tab(child:
50-
Row(children:
51-
[const Icon(UniIcons.lecture),
52-
Expanded(child: Text(S.of(context).lectures, overflow: TextOverflow.ellipsis),),],),),
53-
Tab(child:
54-
Row(children:
55-
[const Icon(UniIcons.exam),
56-
Expanded(child: Text(S.of(context).exams, overflow: TextOverflow.ellipsis),),],),),
45+
Tab(
46+
child: Row(
47+
children: [
48+
const Icon(UniIcons.courses),
49+
Expanded(
50+
child: Text(
51+
S.of(context).courses,
52+
overflow: TextOverflow.ellipsis,
53+
),
54+
),
55+
],
56+
),
57+
),
58+
Tab(
59+
child: Row(
60+
children: [
61+
const Icon(UniIcons.lecture),
62+
Expanded(
63+
child: Text(
64+
S.of(context).lectures,
65+
overflow: TextOverflow.ellipsis,
66+
),
67+
),
68+
],
69+
),
70+
),
71+
Tab(
72+
child: Row(
73+
children: [
74+
const Icon(UniIcons.exam),
75+
Expanded(
76+
child: Text(
77+
S.of(context).exams,
78+
overflow: TextOverflow.ellipsis,
79+
),
80+
),
81+
],
82+
),
83+
),
5784
],
5885
);
5986
}

0 commit comments

Comments
 (0)