no message
This commit is contained in:
parent
a8b8ba5d81
commit
ecc60888a5
|
|
@ -247,6 +247,32 @@ Widget $completedHomeworkView(BuildContext context,
|
||||||
subjectivePrecision: jobTaskItem.subjectivePrecision / 100,
|
subjectivePrecision: jobTaskItem.subjectivePrecision / 100,
|
||||||
taskIds: jobTaskItem.markingTasks.map((e) => e.id).toList(),
|
taskIds: jobTaskItem.markingTasks.map((e) => e.id).toList(),
|
||||||
),
|
),
|
||||||
|
InkWell(
|
||||||
|
onTap: () {},
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(flex: 1, child: SizedBox()),
|
||||||
|
Expanded(
|
||||||
|
flex: 9,
|
||||||
|
child: Container(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
margin: EdgeInsets.only(top: 20.h),
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 7.h),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(20),
|
||||||
|
gradient: LinearGradient(
|
||||||
|
begin: Alignment.centerLeft,
|
||||||
|
end: Alignment.centerRight,
|
||||||
|
colors: [Color.fromRGBO(95, 197, 255, 1), Color.fromRGBO(61, 68, 255, 0.82)],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: quickText('查看报告', color: Colors.white, size: 12.sp),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(flex: 1, child: SizedBox()),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
SizedBox(height: 10.h),
|
SizedBox(height: 10.h),
|
||||||
ExpansionTile(
|
ExpansionTile(
|
||||||
tilePadding: EdgeInsets.only(right: 10.w, bottom: 0),
|
tilePadding: EdgeInsets.only(right: 10.w, bottom: 0),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue