Decryption key:
FluxStore Manager - Flutter Vendor App for Woocommerce v6.2.0
Core Updates
(1) Flutter 3.44.x Upgrade ⬆
Upgrade to the latest Flutter channel stable
v3.44.x
To make sure you are using the correct Flutter version, run this command:
To upgrade
Flutter 3.44.x, please close all your IDE and run these commands in the project folder
To update/migrate the app to the latest version
(2) Date On Sale in Vendor Admin
Supported: Vendor Admin (Manager App)
- Helps sellers add Sales Start and End Dates when creating or updating products on the app.
- A sale countdown timer displays on the Product Details screen.
(3) Prevent Vendor Add New Attributes
Supported: WooCommerce, MultiVendor (Dokan/WCFM)
- Added configuration to disable vendors from creating new attributes while editing products.
"vendorConfig": {
+ "DisableVendorAddAttribute": false,
}
(4) Catalog Visibility in Vendor Admin
Supported: Vendor Admin (Manager App)
- Added support for catalog visibility while creating/updating product.
- Requires the latest MStore API plugin.
(5) Notification Improvements
Supported: All frameworks
- Improved notification screen, notification detail cards UI/UX.
- Fixed Android notifications are still shown when users disable Firebase topic flow.
- Fixed Android notification is cleared unexpectedly when opening the app.
- Fixed Android foreground notification display behavior.
- Fixed image and deeplink issues in notification flows.
(6) OneSignal User Tracking Upgrade
Supported: All frameworks
- Added tracking for user language, email, and phone number on OneSignal integration.
(7) Auth Config Refactor ⬆
Supported:
All frameworks |

BREAKING CHANGE
- Introduced unified authConfig structure to support flexible sign-up fields and modern provider config.
+ "authConfig": {
+ "defaultMethod": "emailPassword",
+ "providers": { ... },
+ "registration": {
+ "email": {"show": true, "require": true},
+ "firstName": {"show": true, "require": true},
+ "lastName": {"show": true, "require": true},
+ "phone": {"show": false, "require": false},
+ "username": {"show": true, "require": false},
+ },
+ }
(8) Tracking Events Refactor
Supported: All frameworks
- Updated tracking events to improve consistency and maintainability.
- Tracking login/register method events: sms, facebook, google, email/password
- Fixed duplicate view cart events
- Improved the view of the product detail event
- Upgrade the Facebook App Event and Firebase Analytics package to the latest version
(9) Currency Config Refactor
Supported:
All frameworks |

BREAKING CHANGE
- Extracted currency-related settings from advanceConfig into dedicated currencyConfig.
"advanceConfig": {
- "DefaultCurrency": ...,
- "Currencies": ...,
- "EnableWOOCSCurrencySwitcher": true
}
+ "currencyConfig": {
+ "defaultCurrencyCode": "USD",
+ "currencies": [...],
+ "enableWOOCSCurrencySwitcher": true,
+ }