chore: Move module location above module summary (#5746)
This commit is contained in:
parent
06c2047f77
commit
5c645904d0
2 changed files with 12 additions and 12 deletions
|
|
@ -199,12 +199,6 @@ class PublicCoursePreviewView extends StatelessWidget {
|
|||
fontSize: titleFontSize,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
topic.description,
|
||||
style: const TextStyle(
|
||||
fontSize: descFontSize,
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding:
|
||||
const EdgeInsetsGeometry.symmetric(
|
||||
|
|
@ -224,6 +218,12 @@ class PublicCoursePreviewView extends StatelessWidget {
|
|||
],
|
||||
),
|
||||
),
|
||||
Text(
|
||||
topic.description,
|
||||
style: const TextStyle(
|
||||
fontSize: descFontSize,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -166,12 +166,6 @@ class SelectedCourseView extends StatelessWidget {
|
|||
fontSize: titleFontSize,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
topic.description,
|
||||
style: const TextStyle(
|
||||
fontSize: descFontSize,
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding:
|
||||
const EdgeInsetsGeometry.symmetric(
|
||||
|
|
@ -191,6 +185,12 @@ class SelectedCourseView extends StatelessWidget {
|
|||
],
|
||||
),
|
||||
),
|
||||
Text(
|
||||
topic.description,
|
||||
style: const TextStyle(
|
||||
fontSize: descFontSize,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue