no message

This commit is contained in:
1147192855@qq.com 2024-02-26 10:50:45 +08:00
parent a8b8ba5d81
commit ecc60888a5
1 changed files with 26 additions and 0 deletions

View File

@ -247,6 +247,32 @@ Widget $completedHomeworkView(BuildContext context,
subjectivePrecision: jobTaskItem.subjectivePrecision / 100,
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),
ExpansionTile(
tilePadding: EdgeInsets.only(right: 10.w, bottom: 0),