fix : incorrect parent
This commit is contained in:
@@ -49,20 +49,18 @@ Widget buildRowOnTapped({
|
|||||||
children: [
|
children: [
|
||||||
Flexible(
|
Flexible(
|
||||||
flex: 2,
|
flex: 2,
|
||||||
child:
|
child: titleWidget ??
|
||||||
titleWidget ??
|
|
||||||
Text(
|
Text(
|
||||||
title ?? 'N/A',
|
title ?? 'N/A',
|
||||||
textAlign: TextAlign.right,
|
textAlign: TextAlign.right,
|
||||||
style: titleStyle ?? AppFonts.yekan14.copyWith(color: AppColor.darkGreyDarkHover),
|
style: titleStyle ?? AppFonts.yekan14.copyWith(color: AppColor.darkGreyDarkHover),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
GestureDetector(
|
Flexible(
|
||||||
onTap: onTap,
|
flex: 2,
|
||||||
child: Flexible(
|
child: GestureDetector(
|
||||||
flex: 2,
|
onTap: onTap,
|
||||||
child:
|
child: valueWidget ??
|
||||||
valueWidget ??
|
|
||||||
Text(
|
Text(
|
||||||
value ?? 'N/A',
|
value ?? 'N/A',
|
||||||
textAlign: TextAlign.left,
|
textAlign: TextAlign.left,
|
||||||
|
|||||||
Reference in New Issue
Block a user