@@ -42,18 +42,45 @@ class AcademicPathPageViewState extends GeneralPageViewState
42
42
controller: tabController,
43
43
dividerHeight: 1 ,
44
44
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
+ ),
57
84
],
58
85
);
59
86
}
0 commit comments