forked from firka/student-legacy
fixed exam view description maxLines
This commit is contained in:
parent
a158b2418e
commit
404933168f
@ -63,7 +63,10 @@ class ExamView extends StatelessWidget {
|
|||||||
title: "date".i18n,
|
title: "date".i18n,
|
||||||
description: exam.writeDate.format(context)),
|
description: exam.writeDate.format(context)),
|
||||||
if (exam.description != "")
|
if (exam.description != "")
|
||||||
Detail(title: "description".i18n, description: exam.description),
|
Detail(
|
||||||
|
title: "description".i18n,
|
||||||
|
description: exam.description,
|
||||||
|
maxLines: 5),
|
||||||
if (exam.mode != null)
|
if (exam.mode != null)
|
||||||
Detail(title: "mode".i18n, description: exam.mode!.description),
|
Detail(title: "mode".i18n, description: exam.mode!.description),
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user