|
@@ -65,7 +65,7 @@ class PropertySalePage extends HookConsumerWidget {
|
|
|
),
|
|
|
),
|
|
|
child: MyTextView(
|
|
|
- price,
|
|
|
+ '\$$price',
|
|
|
fontSize: 17,
|
|
|
textColor: context.appColors.textBlack,
|
|
|
isFontMedium: true,
|
|
@@ -75,7 +75,7 @@ class PropertySalePage extends HookConsumerWidget {
|
|
|
}
|
|
|
|
|
|
// listitem
|
|
|
- Widget _buildSaleItem(BuildContext context,WidgetRef ref, item, _vm) {
|
|
|
+ Widget _buildSaleItem(BuildContext context,WidgetRef ref, Map<String, dynamic>item, _vm) {
|
|
|
return Container(
|
|
|
decoration: BoxDecoration(
|
|
|
color: context.appColors.backgroundWhite,
|
|
@@ -95,7 +95,9 @@ class PropertySalePage extends HookConsumerWidget {
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
children: [
|
|
|
Expanded(child: _buildItemLeftSection(context, ref, item, _vm)),
|
|
|
- _buildItemRightSection(context, ref, item, _vm),
|
|
|
+ Container(child: _buildItemRightSection(context, ref, item, _vm)).constrained(
|
|
|
+ minWidth: 120,
|
|
|
+ ),
|
|
|
],
|
|
|
),
|
|
|
),
|