booleanbites / houzi-support

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

price format #67

Closed Hralamal2 closed 1 year ago

Hralamal2 commented 1 year ago

Hi how can i change the price format

for example

i put the price ,133,796

but in the app home page the price 134k

how can i put the real price that i put

Hassan6197 commented 1 year ago

Hello @Hralamal2, We have already written detailed documentation regarding prices. You can find it here.

Let us know if you want more details.

Hralamal2 commented 1 year ago

Hi thank for replying i read the article you send but i didn't understand anything what should i do

Hassan6197 commented 1 year ago

Ok @Hralamal2, go to hooks_v2.dart and look for getCompactPriceFormatterHook() method and replace it with the following code:

@override
  CompactPriceFormatterHook getCompactPriceFormatterHook() {
    CompactPriceFormatterHook compactPriceFormatterHook = (String inputPrice) {
      return UtilityMethods.priceFormatter(inputPrice, "");
    };

    return compactPriceFormatterHook;
  }
Hralamal2 commented 1 year ago

Thank you some much it's works for me