|
|
|
@ -19,6 +19,7 @@ class ExaminationIitemCard extends StatelessWidget {
|
|
|
|
return Container(
|
|
|
|
return Container(
|
|
|
|
color: Colors.white,
|
|
|
|
color: Colors.white,
|
|
|
|
padding: EdgeInsets.all(8),
|
|
|
|
padding: EdgeInsets.all(8),
|
|
|
|
|
|
|
|
margin: EdgeInsets.only(bottom: 8),
|
|
|
|
child: Column(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
@ -77,15 +78,13 @@ class ExaminationIitemCard extends StatelessWidget {
|
|
|
|
SizedBox(
|
|
|
|
SizedBox(
|
|
|
|
height: 4,
|
|
|
|
height: 4,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
AppText(
|
|
|
|
child: AppText(
|
|
|
|
|
|
|
|
examination.remark,
|
|
|
|
examination.remark,
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
color: Colors.grey.shade500,
|
|
|
|
color: Colors.grey.shade500,
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|