|
|
|
|
@ -60,13 +60,18 @@ class ReportListWidget extends StatelessWidget {
|
|
|
|
|
height: 12,
|
|
|
|
|
),
|
|
|
|
|
Texts(reportList[index].projectName),
|
|
|
|
|
Texts(reportList[index].clinicDescription),
|
|
|
|
|
Container(
|
|
|
|
|
//height: MediaQuery.of(context).size.height * 0.07,
|
|
|
|
|
width: MediaQuery.of(context).size.width * 0.35,
|
|
|
|
|
child: Texts(reportList[index].clinicDescription),
|
|
|
|
|
),
|
|
|
|
|
Texts(TranslationBase.of(context).invoiceNo + ': ${reportList[index].invoiceNo}'),
|
|
|
|
|
SizedBox(height: 12),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
reportList[index].status == 2
|
|
|
|
|
? Container(
|
|
|
|
|
? Expanded(
|
|
|
|
|
child: Container(
|
|
|
|
|
margin: EdgeInsets.only(left: 15.0, right: 15.0),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: () {
|
|
|
|
|
@ -79,6 +84,7 @@ class ReportListWidget extends StatelessWidget {
|
|
|
|
|
size: 30.0,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
: Container(),
|
|
|
|
|
],
|
|
|
|
|
|