fix : incorrect parent

This commit is contained in:
2025-07-02 08:49:24 +03:30
parent 157398494b
commit 0da9f54d35

View File

@@ -49,20 +49,18 @@ Widget buildRowOnTapped({
children: [
Flexible(
flex: 2,
child:
titleWidget ??
child: titleWidget ??
Text(
title ?? 'N/A',
textAlign: TextAlign.right,
style: titleStyle ?? AppFonts.yekan14.copyWith(color: AppColor.darkGreyDarkHover),
),
),
GestureDetector(
onTap: onTap,
child: Flexible(
flex: 2,
child:
valueWidget ??
Flexible(
flex: 2,
child: GestureDetector(
onTap: onTap,
child: valueWidget ??
Text(
value ?? 'N/A',
textAlign: TextAlign.left,