booleanbites / houzi-support

Support forum repo for issues & bugs reported for Houzi Flutter App.
4 stars 0 forks source link

Properties Homepage Empty But Map view work fine #149

Closed khairulimran-97 closed 7 months ago

khairulimran-97 commented 7 months ago

On homepage it empty. Not shown any list

Screenshot_2024-02-20-15-48-27-90_ebd696298bc7bb5c2514b3a87100f93f

Luckily on map view had list of properties

Screenshot_2024-02-20-15-48-32-55_ebd696298bc7bb5c2514b3a87100f93f

AdilSoomro commented 7 months ago

Hi, this is related to some issue in Article Box 3 design. To fix this, please open following file:

PROJECT_HOME/packages/houzi_package/lib/widgets/article_box_widgets/article_box_design_03.dart

and find the line number 29, where it is creating an image widget:

imageWidget03(context: context, infoDataMap: infoDataMap, isInMenu: isInMenu, onTap: onTap),

add another parameter , height: 315 to the end of the function, like below:

imageWidget03(context: context, infoDataMap: infoDataMap, isInMenu: isInMenu, onTap: onTap, height: 315),

It should fix the issue.