Merge remote-tracking branch 'origin/main'
commit
1a4cebae9c
|
@ -40,6 +40,7 @@ class ListItemFactory {
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (isRight)
|
if (isRight)
|
||||||
|
|
||||||
Row(
|
Row(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
|
|
|
@ -297,7 +297,10 @@ class _CommitmentWorkshopDetailPageState extends State<CommitmentWorkshopDetailP
|
||||||
),
|
),
|
||||||
const SizedBox(width: 15),
|
const SizedBox(width: 15),
|
||||||
if (pd['SIGN_PATH'] != null)
|
if (pd['SIGN_PATH'] != null)
|
||||||
Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
|
Expanded(
|
||||||
|
child: Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
@ -225,7 +225,9 @@ class _CompanySafetyCommitmentDetailState extends State<CompanySafetyCommitmentD
|
||||||
),
|
),
|
||||||
const SizedBox(width: 15),
|
const SizedBox(width: 15),
|
||||||
if (pd['SIGN_PATH'] != null)
|
if (pd['SIGN_PATH'] != null)
|
||||||
Image.network(ApiService.baseImgPath+pd['SIGN_PATH'] ,width: 230,height: 150,fit: BoxFit.contain,),
|
Expanded(
|
||||||
|
child: Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
|
||||||
|
),
|
||||||
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
@ -301,7 +301,9 @@ class _TeamSafetyCommitmentDetailState extends State<TeamSafetyCommitmentDetail>
|
||||||
),
|
),
|
||||||
const SizedBox(width: 15),
|
const SizedBox(width: 15),
|
||||||
if (pd['SIGN_PATH'] != null)
|
if (pd['SIGN_PATH'] != null)
|
||||||
Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
|
Expanded(
|
||||||
|
child: Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
|
||||||
|
),
|
||||||
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue