Actively maintained

FluxStore Shopify changelog

12 documented releases, the latest being v6.4.0 on Sep 22, 2026. Every one of them is a free update for existing license holders.

Jump to a release

v6.4.0

LatestSep 22, 2026
Last updated: Sep 22, 2026 - Link Purchase | Download
πŸ”₯Β 50% OFF All FluxStore Apps β€” Sep 23–29 ONLY!
πŸ’‘
QUICK NOTE

IMPORTANT UPDATE

πŸ”„ Core Updates

(1) Flutter 3.47.x Upgrade ⬆

  • Upgrade to the latest Flutter channel stable v3.47.x [Android] Update compileSdk from 36 to 37
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.47.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
notion image
⚠️
Some plugins may show Swift Package Manager/Kotlin Gradle Plugin warnings in the logs while running the app. But you can totally ignore them. Your app still works fine.

(2) Required App Update + Custom Dialog Text

  • Force users to update when a new version is available in the store, or keep the update optional with a customizable dialog title, message, and button labels.
  • Demo Screenshots:
notion image
Configuration
"advanceConfig": {
  "versionCheck": {
    "enable": true,
    "iosId": null,
    "iOSAppStoreCountry": null,
    "androidId": null,
    "androidPlayStoreCountry": null,
+   "forcedUpdate": false,
+   "dialogTitle": null,
+   "dialogText": null,
+   "updateButtonText": null,
+   "dismissButtonText": null,
  }
}
Config examples β€” default, custom text, and forced updates
Default:
"versionCheck": {
  "enable": true,
  "iosId": null,
  "iOSAppStoreCountry": null,
  "androidId": null,
  "androidPlayStoreCountry": null,
  "forcedUpdate": false,
  "dialogTitle": null,
  "dialogText": null,
  "updateButtonText": null,
  "dismissButtonText": null
}
Custom text:
"versionCheck": {
  "enable": true,
  "iosId": null,
  "iOSAppStoreCountry": null,
  "androidId": null,
  "androidPlayStoreCountry": null,
  "forcedUpdate": false,
  "dialogTitle": "New version availale",
  "dialogText": "Would you like to update it now?",
  "updateButtonText": "Update Now",
  "dismissButtonText": null
}
Forced update:
"versionCheck": {
  "enable": true,
  "iosId": null,
  "iOSAppStoreCountry": null,
  "androidId": null,
  "androidPlayStoreCountry": null,
  "forcedUpdate": true,
  "dialogTitle": "App Update Required",
  "dialogText": "Please update to continue using the app",
  "updateButtonText": "Update",
  "dismissButtonText": null
}

(3) Search Products by Image ⚑️

  • Let shoppers search for Products faster with Image Search in your E-commerce App. Simply upload an image and find similar products in seconds.
  • This feature is available for Extended license. Please contact the support team to receive the n8n workflow and instructions.
  • Demo video:
Configuration
"searchConfig": {
+   // Required Extended license
+   "imageSearchUrl": "image-search-endpoint",
+   "imageSearchApiKey": null
}

(4) Realtime Chat Push via OneSignal User ID

Chat notifications now work for apps that use OneSignal by storing the real user ID in Firestore chat room users (previously, only email-based user data was stored). Existing rooms are migrated to the real user ID when they are opened or updated, with email used as a fallback.
  • Pass sender and receiver user ids through the normal chat screen flow.
  • Persist chat user id in Firestore chat room users.
  • Read Firestore chat user id with email fallback for backward compatibility.

(5) Ability to show/hide β€œSee All” in Header Views

  • Enable feature to show/hide the β€œSee All” button in the Blog, Product, Vertical, and Brand list header views. The Brand Carousel does not have a β€œSee All” button.
  • Demo Screenshots:
    notion image
Configuration
{
  "HorizonLayout": [
    {
      "layout": "threeColumn",
+     "showSeeAll": false
    }
  ],
  "VerticalLayout": {
+   "showSeeAll": false
  }
}

(6) Google & Facebook Login for Web/PWA

Google and Facebook social login now work on Web/PWA builds. Native Android/iOS behavior remains unchanged.
  • Google: on web, the official Google Identity Services button is rendered and the web client ID is configured from env.dart
  • Facebook: initialize the JS SDK on web/macOS with facebookAppId before login
Configuration
"loginSetting": {
  "showGoogleLogin": true,
+ "googleWebClientId": "YOUR_GOOGLE_WEB_CLIENT_ID.apps.googleusercontent.com",
}

(7) Hide Short Description on Product Detail

  • Added a new option to show or hide the Short Description across all Product Detail layouts.
  • Demo Screenshots:
    notion image
Configuration
"productDetail": {
+   /// Show/hide the short description on the product detail page.
+   "showShortDescription": true,
}

(8) Correct Address Field Mapping

  • The apartment field in the Native Checkout was mapped to the WooCommerce company field. The unused block address field has been replaced with company, while the apartment field now correctly maps to address2.
  • Demo Screenshots:
    notion image
Configuration
"addressFields": [
  {
-   "type": "block",
+   "type": "company",
    "visible": true,
    "editable": true,
    "position": 11,
    "required": false,
    "defaultValue": ""
  }
]

(9) Name-Based User Avatar πŸ‘€

  • Replace the generic user icon with an Avatar generated from the User’s Name in the Settings profile item.
  • Demo Screenshots:
    notion image

(10) Improve Full Size Detail Scrolling

Update the Full-size Product Detail (or Listing Detail) layout to support smoother full-screen scrolling.

(11) Order Status Tabs, Colors & Tracking Timeline

Improve Order Status handling with missing translations, status colors, additional history tabs, and an updated tracking timeline.
New Status Translations:
  • orderReturned
  • readytopick
  • picking
  • delivering
  • delivered
  • driverAssigned when delivery assignment is enabled.
  • outForDelivery when delivery assignment is enabled.
  • failedDelivery when delivery assignment is enabled.
New History tabs:
  • Driver Assigned
  • Out For Delivery
  • Failed Delivery Attempt
  • Refund Requested
notion image
notion image
Configuration
"orderConfig": {
  "version": 1, // 1 or 2
+ /// Show delivery-related statuses in Order History filters.
+ /// Includes Driver Assigned, Out For Delivery, and Failed Delivery Attempt.
+ /// Requires a supported delivery-driver status integration.
+ "enableDeliveryStatusFilter": false,
},
"managerConfig": {
  "appLogo": "assets/images/app_icon_transparent.png",
  "appName": "FluxStore Admin",
  /// Enable assigning orders to delivery boys.
  /// Requires integration with FluxStore Delivery and FluxStore Manager.
- "enableDeliveryFeature": false,
+ "enableOrderAssignment": false,
}

IMPORTANT UPDATE
  • ⬆️ Updated dependencies to latest versions
This release contains many fixes
  • Fixed: Shopify checkout URL now uses the app language (@inContext) instead of geo-IP locale
  • Fixed: phone number validation for international formats; optional phone can be left empty; checkout phone prefills from profile; selecting a saved address no longer duplicates dial codes
  • Fixed: missing new SMS login support on some platforms
  • Fixed: disable Add to Cart while product variants are still loading
  • Fixed: fallback icon when taxonomy images fail to load
  • Fixed: offline mode did not load list data (e,g blog list)
  • Fixed: correct Pay / Cancel / Refund button visibility by order status
  • Fixed: remove tab bar shadow when the floating button is enabled [Android]
  • Fixed: keep tab bar slide and opacity effects when scrollable background is enabled
  • Fixed: home background scrolling during horizontal scrolling
  • Fixed: Firebase auth error shown on the cart screen
  • Fixed: lag when scrolling a complex app layout
  • Fixed: respect stock limits in quantity selector
How to activate FluxStore on FluxBuilder app builder?
How to update/migrate the app to the latest version?
notion image

v6.3.1

Aug 19, 2026
Last updated: Aug 19, 2026 - Link Purchase | Download
πŸ’‘
QUICK NOTE

IMPORTANT UPDATE

πŸ”„ Core Updates

Flutter 3.47.x Upgrade ⬆

Upgrade to the latest Flutter channel stable v3.47.x
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.47.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version

How to activate FluxStore on FluxBuilder app builder?
How to update/migrate the app to the latest version?

v6.3.0

Jul 29, 2026
Last updated: Jul 29, 2026 - Link Purchase | Download
πŸ’‘
QUICK NOTE

NEW FEATURE

πŸ”„ Core Updates

(1) Update Google Play Policy πŸ’₯

Supported: All Apps
  • Updated target API level for Android builds to Android 16 (API level 36).
  • Updated com.revenuecat.purchases:purchases to the latest version.
This ensures continued app compatibility, improved performance, and access to new platform features while adhering to Google's publishing standards πŸ‘
notion image
notion image

(2) Shopify Password Reset πŸ”

Supported: Shopify
Implements reset password flow for Shopify.
Need to set up Shopify deeplink if you want to open the app instead of the browser after clicking on the reset button in email:Β https://shopify.dev/docs/storefronts/mobile/checkout-kit/offsite-payments

(3) Tab Bar Minimize Support 🫧

Supported: All Apps
Adds tab bar minimize UI.
"TabBarConfig": {
+ "showMinimize": true
}
notion image

(4) Liquid Glass Bottom TabBar πŸ’§

Supported: All Apps
  • Adds liquid glass rendering mode - an iOS 26-style liquid glass effect to the tab bar background.
▢️ Watch Video
"TabBarConfig": {
+  "liquidGlass": true
}
notion image

(5) Floating Tab Bar 🎈

Supported: All Apps
Introduces a floating bottom tab bar style above the page content. Combine with margins, radius, and shadow to get a floating pill.
"TabBarConfig": {
+  "floating": true
}
notion image

(6) OTP Length Configuration for SMS Verification πŸ”’

Supported: All Apps
Adds configurable OTP length for SMS providers that do not use 6 digits (default length).
"authConfig": {
 "providers": {
  "sms": {
+   "otpLength": null // 6 as default
  }
 }
}
notion image

(7) Video Shopping Sorting Config Support 🎬

Supported: Woo/Shopify
Adds configurable video sorting parameters. Requires the latest MStore API plugin version.
{
    "layout": "videos",
    "icon": "assets/icons/tabs/icon-videos.png",
    "styleVersions": ["1", "2"],
+   "order": "asc",
+   "orderby": "date"
}
  • orderby supports date, modified (default), title, rand, id, menu_order.
  • order supports ASC or DESC (default).

(8) Custom Filter Screen Support 🧭

Supported: All Apps
Allows configuring filter/sort options shown in Filter Screen.
"filterConfig": {
    "showLayout": true,
    "showSort": true,
    "showPriceSlider": false,
    "showCategory": false,
    "showListingLocation": false,
    "showBrand": false,
    "showTag": false,
    "showFeature": false,
    "showAttribute": false,
		"supportedSortByOptions": ["date", "price"]
}
  • supportedSortByOptions accepts: onSale, featured, date, price, title, popularity, rating, menu_order, rand, relevance.
  • Empty or null keeps framework-specific default options.
notion image

(9) Language Expansion 🌐

Supported: All Apps
Adding more localization support: Afrikaans (af), Filipino (fil), Nepali (ne), Assamese (as), Belarusian (be), Tibetan (bo), Welsh (cy), Basque (eu), Irish (ga), Galician (gl), Swiss German (gsw), Gujarati (gu), Croatian (hr), Armenian (hy), Icelandic (is), Kyrgyz (ky), Latvian (lv), Macedonian (mk), Malayalam (ml), Mongolian (mn), Norwegian Bokmal (nb), Oriya (or), Panjabi (pa), Pashto (ps), Slovenian (sl), Tagalog (tl), Uighur (ug), Zulu (zu)
FluxStore apps now support more than 85 languages.

(10) HTML Link Handling Improvement πŸ”—

Supported: All Apps
Support handling deeplinks in HTML, such as product descriptions, blog/post content.

(11) Testimonial Style Variants πŸ’¬

Supported: All Apps
Adds new testimonial style variants for richer home/content design options.
notion image

(12) Phone Number Verification Upgrade ☎️

Supported: All Apps
  • Upgrade Phone Number Verification to the latest version for improved stability and support for more phone number formats.
  • Fix: phone still the same on back to address screen
  • Fix: avoid missing phone number unexpectedly

(13) Product Detail Price Visibility πŸ’°

Supported: All Apps
Adds showPrice control in product detail settings for flexible price display behavior.
"productDetail": {
+ "showPrice": true
}
notion image

(14) Secure Screen Configuration πŸ›‘οΈ

Supported: All Apps
Implements secure screen configuration to block screenshots and screen recording on sensitive screens or the entire app.
"secureScreenConfig": {
	 "enable": false,
	 "screens": []
}
  • Set enable=true with empty screens to block app-wide.
  • Or set enable=true with screens list to block specific routes only.


IMPORTANT UPDATE
  • ⬆️ Updated dependency set to latest compatible versions.
This release contains many fixes
  • Updated salesiq_mobilisten to fix iOS build.
  • Fixed issue where external WebView could not open on Android.
  • Fixed delay on notification permission screen.
  • Fixed excessive address requests when app bar does not include location item.
  • Fixed WebView keyboard gray gap issue.
  • Fixed unexpected Smart Chat visibility.
  • Fixed Shopify product loading issue.
  • Fixed missing variant price range in ProductSimpleView.
How to activate FluxStore on FluxBuilder app builder?
  • Follow this guide:
How to update/migrate the app to the latest version?

v6.2.0

Jun 15, 2026
Last updated: Jun 15, 2026 - Link Purchase | Download
πŸ’‘
QUICK NOTE

NEW FEATURE

πŸ”„ 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:
flutter --version
To upgrade Flutter 3.44.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
⚠️
Some plugins may show Swift Package Manager/Kotlin Gradle Plugin warnings in the logs while running the app. But you can totally ignore them. Your app still works fine πŸ‘

(2) Notification Improvements πŸ””

Supported: All frameworks
  • Improved notification screen, notification detail cards UI/UX.
notion image
  • 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.

(3) OneSignal User Tracking Upgrade πŸ””

Supported: All frameworks
notion image
  • Added tracking for user language, email, and phone number on OneSignal integration.

(4) Search Empty State Customization πŸ”Ž

Supported: WooCommerce, MultiVendor (Dokan/WCFM), Shopify, Magento, Opencart, Strapi, Prestashop, Notion, BigCommerce, Haravan, MAX-Multisites
notion image
notion image
notion image
  • Added empty image support for search screen (no keyword / no result).
"searchConfig": {
+ "emptyImage": "assets/images/empty_search.png",
+ "boxFit": "contain",
}

(5) Cart Empty State Customization πŸ›’

Supported: WooCommerce, MultiVendor (Dokan/WCFM), Shopify, Magento, Opencart, Strapi, Prestashop, Notion, BigCommerce, Haravan, Serverless (Firebase), MAX-Multisites
notion image
notion image
notion image
  • Added empty-state image and fit customization for cart screen.
  • Grouped cart sync options into cart config.
"cartDetail": {
+ "boxFit": "cover",
+ "emptyImage": "assets/images/leaves.png",
+ "enableSyncCartFromWebsite": false,
+ "enableSyncCartToWebsite": false,
}

(6) Dynamic Link Handling in WebView πŸ”—

Supported: All frameworks
  • Added support for dynamic links and deep links during WebView navigation, allowing supported links to be redirected to native app screens instead of loading inside the WebView
"webViewConfig": {
+ "handleDynamicLink": true,
}

(7) Continue as Guest on Login πŸšͺ

Supported: WooCommerce, MultiVendor (Dokan/WCFM), Shopify, Listing (Listeo/ListingPro/MyListing), Magento, Opencart, Strapi, Prestashop, Notion, BigCommerce, Haravan, GPT, WordPress
notion image
  • Added configurable β€œContinue as Guest” button on login flow.
"authConfig": {
+ "showContinueAsGuestInLogin": false,
}

(8) 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},
+   },
+ }

(9) 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

(10) 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,
+ }

IMPORTANT UPDATE
  • ⬆ Upgrade dependencies to the latest version
This release contains many fixes
  • Fixed: Shopify cart becomes empty after reopening app.
  • Fixed: cannot create address when Shopify has only one shipping country.
  • Fixed: guest checkout error caused by order status update permission (BACS/COD).
  • Fixed: incorrect Android navigation bar color after opening app.
  • Fixed: WebView microphone permission issue on Android (MODIFY_AUDIO_SETTINGS).
  • Fixed: scaled video issue on tablets/desktop.
  • Fixed: hidden catalog products still appearing in SKU search.
  • Fixed: variable product regular price not showing.
  • Fixed: attribute options disappearing when unselected attrs are null.
  • Fixed: fetching product visibility by user group/category controls.
  • Fixed: correct some language display names in env.dart file
How to activate FluxStore on FluxBuilder app builder?
How to update/migrate the app to the latest version?

v6.1.0

April 29, 2026
Last updated: April 29, 2026 - Link Purchase | Download

πŸ”„ Core Updates

(1) Update easy_paypal to Comply with Google Play Policies ⬆

Supported: All frameworks
Updated the easy_paypal package to replace the old PayPal Data Collector SDK (com.paypal.android.sdk:data-collector) with the policy-compliant Braintree version (com.braintreepayments.api:data-collector:4.31.0). This resolves Google Play rejections caused by the old SDK collecting device location without prominent disclosure.

(2) Fix Android Build Error: local_auth compileSdk Incompatibility πŸ”§

Supported: All frameworks
Pinned local_auth_android to a fixed version to resolve a build failure introduced by Android Gradle Plugin 9+ (AGP 9), where local_auth_android was missing compileSdk in its build.gradle.kts. This fixes the NullPointerException crash during Gradle configuration.

(3) Fix Android Build Error: stripe_android / stripe_ios compileSdk Incompatibility πŸ”§

Supported: All frameworks (Extended source code only)
Fixed a build failure on extended source code caused by stripe_android and stripe_ios requiring compileSdk β‰₯ 36 due to updated androidx dependencies (activity, core-ktx, browser, navigationevent), while the project was still targeting android-35.

πŸ’‘
IMPORTANT UPDATE
⬆️ Updated easy_paypal SDK β€” replaces com.paypal.android.sdk:data-collector with com.braintreepayments.api:data-collector:4.31.0 to comply with Google Play's User Data and Prominent Disclosure policy
⬆️ Pinned local_auth_android to a compatible version to fix build failures with Android Gradle Plugin 9+.
This release contains many fixes
  • Fixed: Android build failure β€” stripe_android and stripe_ios required compileSdk β‰₯ 36 due to updated androidx dependencies
  • Fixed: Product name (title) being vertically clipped / cut off in product listing cards (all frameworks)
  • Fixed: Add-to-cart button incorrectly shown in Wishlist screen in certain edge cases (all frameworks)
  • Fixed: Initial deep link handled twice on cold app start, causing duplicate navigation (all frameworks)
  • Fixed: WebView (web embed) not responding to scroll gestures correctly on some devices (all frameworks)
  • Fixed: Product deep links without a trailing slash not being parsed correctly β€” both https://domain/product/slug and https://domain/product/slug/ are now supported
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v6.0.1

April 1, 2026
Last updated: April 1, 2026 - Link Purchase | Download

πŸ”„ Core Updates

This patch release addresses critical bug fixes reported after v6.0.0

  • Fixed: Unable to press the order button on the first attempt β€” the place order button was unresponsive on the first load because selectedId was still null after payment methods loaded
  • Fixed: config JSON not applied when changing language
  • Fixed (Shopify): App crash on launch due to type cast of null to String when parsing blog post image URL in ShopifyBlog
  • Fixed: Build issue due to connectivity_plus package

How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v6.0

Mar 29, 2026
Last updated: Mar 29, 2026 - Link Purchase | Download
NEW FEATURE

πŸ”„ Core Updates

(1) Flutter 3.41.x Upgrade ⬆

Upgrade to the latest Flutter channel stable v3.41.x
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.41.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
To fix the build issue with the new Flutter version
After upgrading, you may meet the cache issue of iOS while building the application. Please run this command to fix:
flutter precache --ios
πŸ’‘
In the new version, we have some breaking changes:
  • You need to upgrade your Xcode version to 26.x to be able to run the app as well as upload to TestFlight

(2) Universal Links / App Links πŸ”—

Supported: All frameworks | ⚠️ BREAKING CHANGE
  • Support iOS Universal Links and Android App Links β€” users tapping your website URLs (product, category, blog, etc.) on their phone will open the app at the correct screen instead of the browser
  • Update dynamicLinkConfig in lib/env.dart:
"dynamicLinkConfig": {
  "type": "selfhosted",
  "serviceConfigs": {
    "selfhosted": {
      "supportedDomains": ["yourdomain.com"],
      "handleHttpsLinks": true,
      "handleCustomScheme": true,
      "customScheme": "fluxstore",
    },
  },
},
  • iOS setup: Upload apple-app-site-association (no extension) to https://yourdomain.com/.well-known/apple-app-site-association with Content-Type: application/json
  • Android setup: Upload assetlinks.json to https://yourdomain.com/.well-known/assetlinks.json
  • Required: Set websiteUrl and websiteDomain in configs/env.props
  • Supported deep link paths: /product/*, /product-category/*, /collections/*, /brand/*, /product-tag/*, /store/*, /listing/*, /blog/*, /post/*

(3) Wishlist Empty State Image πŸ–ΌοΈ

Supported: All frameworks
  • Added emptyImage and boxFit options to wishListConfig in lib/env.dart to customize the image shown on an empty Wishlist screen
  • Supports local assets and remote image URLs
"wishListConfig": {
  ...
+  "emptyImage": "assets/images/empty_wishlist.png",
+  "boxFit": "contain",
},
notion image

(4) Product List Tile β€” Image Position Config πŸ–ΌοΈ

Supported: All frameworks (except GPT, WordPress, Vendor Admin, Delivery, WebApp)
  • Controls whether the product thumbnail appears on the left or right side of the tile
notion image
  • Automatically adapts to RTL languages (when null, the default RTL behavior applies)
notion image
  • New imageOnLeft option for product layouts using "layout": "listTile" in lib/config/config_xx.json
{
  "layout": "listTile",
+  "imageOnLeft": false,
}

(5) Review Widget: Title Field Support ⭐️

  • Support the Title field in the Review widget on the product detail screen
notion image
  • Available for ListingPro and Shopify frameworks

(6) Cart Performance & Reliability ⚑️

  • Fixed a critical issue causing server overload (due to 80–90+ simultaneous API calls) during checkout
  • Reduced server load by batching product API requests when checking cart
  • Added pull-to-refresh in the Cart screen
  • Cart is now verified before checkout β€” out-of-stock or unavailable items are flagged immediately with clear error messages

(7) Share Link Metadata Support πŸ”—

  • Product and blog share links now include Open Graph metadata (title, description, image)
  • Rich link previews appear automatically in messaging apps and social networks
notion image
πŸ’‘
IMPORTANT UPDATE
  • πŸ”„ [BREAKING CHANGE] EnableReview renamed to EnablePreview in checkout screen config (all 88 translation files updated) β€” if you override this key in env.dart or config_xx.json, rename it accordingly
  • πŸ”„ Blog category images are now handled more reliably β€” banners load consistently across all frameworks
  • πŸ”„ Product list now displays tag/brand names instead of raw IDs
  • πŸ”„ YouTube iframe videos in blog/product/HTML content now load correctly
  • ⬆️ Updated flutter_facebook_auth and facebook_app_events to latest versions β€” requires Xcode 26.x or later to build for iOS
This release contains many fixes
  • Fixed: wrong currency used for wallet cart payments
  • Fixed: WebView crashing when opened (Vendor Admin, Delivery)
  • Fixed(HTML): YouTube iframe not loading video content inside HTML content blocks
  • Fixed: Arabic text search failing
  • Fixed: shipping methods not appearing when no saved address exists
  • Fixed(Rating): missing star caused by widget overflow
  • Fixed(SearchScreen): text position in RTL
  • Fixed: time parsing error causing the product list to display nothing
  • Fixed: app not falling back to local config when cloud config/Mstore API caching is unavailable
  • Fixed: fee names with encoded HTML entities displaying raw symbols
  • Fixed: countdown timer position width issue in RTL layout
  • Fixed(BoostEngine): falling back to cached result when remote data is missing
  • Fixed(HomeScreen): product horizontal layout overlapping after switching app language
  • Fixed: Size Guide not appearing due to case sensitivity in title matching
  • Fixed: URL error display on HTML content pages
  • Fixed(Magento): product variant details not loading or updating when a variant option is selected
  • Fixed: shipping address being updated unexpectedly during checkout navigation
  • Fixed: categoryMenuShowDepth config missing from some category menu layouts
  • Fixed(Checkout): email field not validated when marked as not required
  • Fixed(Loyalty): incorrect loyalty card priority in reward display
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v5.6.0

January 21st, 2026
Last updated: January 21st, 2026 - Link Purchase | Download
NEW FEATURE
Latest Update: The January 21st release fixes the search issue.

(1) Flutter 3.38.5 Upgrade ⬆

Upgrade latest Flutter channel stable v3.38.5
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.38.5, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
To fix build issue with new flutter version
After upgrading, you may meet the cache issue of iOS while building the application, please run this command to fix:
flutter precache --ios

(2) Full Support for Xcode 26 & iOS 15 Minimum Deployment πŸ’₯

  • Fully compatible with Xcode 26, ensuring smooth builds and future-proof iOS development.
  • Minimum iOS deployment target has been upgraded to iOS 15.0 (previously iOS 14.0).
⚠️ Notice
This update drops support for iOS 14 and earlier versions due to Xcode 26 and latest iOS SDK requirements.

(3) Video Splash Screen 🎬

Make a strong first impression with the new Video Splash Screen feature.
  • Supports video playback on app launch instead of static images.
  • Ideal for branding, promotions, or storytelling.
Configuration
  • Edit in the lib/env.dart file as below:
  "splashScreen": {
    "enable": true,

    /// duration in milliseconds, used for all types except "rive", "flare" and "video"
    "duration": 2000,

    ///  Type should be: 'fade-in', 'zoom-in', 'zoom-out', 'top-down', 'rive',
    ///  'flare', 'static', 'video'
    "type": "video",
    "image": "assets/videos/splashscreen.mp4", // https://demo.mstore.io/wp-content/uploads/2025/09/splashscreen.mp4

    /// AnimationName's is used for 'rive' and 'flare' type
    "animationName": "fluxstore",

    "boxFit": "contain",
    "backgroundColor": "#ffffff",
    "paddingTop": 0,
    "paddingBottom": 0,
    "paddingLeft": 0,
    "paddingRight": 0,
  },

(4) WhatsApp Order Integration πŸ’¬

notion image
Added support for WhatsApp Order
  • Allow customers to send their order details directly via WhatsApp after a successful checkout.
  • Integrate seamlessly with the existing payment flow.
  • Message templates are fully customizable, with order information automatically populated for convenience.
  • Support Native payment only (not support webview payment)
Configuration
  • Edit in the lib/env.dart file as below
{
  "whatsAppOrderConfig": {
    "phoneNumber": "12124567890",
    "message": "Hello, I would like to place an order. Here are the details:\n\n{order_details}\n\nTotal Amount: {total_amount}\n\nThank you!",
    "paymentMethodIds": [
      "lwc-whatsapp-order"
    ],
    "autoOpenWhatsAppAfterOrder": false
  }
}
  • Support these replaced params: {billing_name},Β {billing_email},Β {billing_phone},Β {billing_address},Β {shipping_name},Β {shipping_email},Β {shipping_phone},Β {shipping_address},Β {order_id},Β {order_details},Β {total_amount}

(5) Show / Hide Sign In & Sign Up on Onboarding πŸšͺ

notion image
More control over your onboarding flow.
  • Choose whether to display Sign In and Sign Up buttons on onboarding screens.
  • Ideal for guest-first experiences or content-first apps.
Configuration
  • Edit in the lib/env.dart file as below:
  • Support for Onboarding version 1 only
  "onBoardingConfig": {
    'enableOnBoarding': true,
    'version': 1,
    'autoCropImageByDesign': true,
    'isOnlyShowOnFirstTime': true,
    'showLanguage': true,
    'showLanguagePopup': false,
+   // Currently, only available for version 1
+   'showSignInSignUp': true,
  },

(6) Short Description on Product Card πŸ“

notion image
Added a new option to control the visibility of short product descriptions.
  • Easily show or hide short descriptions on the product detail screen.
  • Useful for clean layouts or minimal product pages.
Configuration
  • Edit in the lib/env.dart file
  "productCard": {
    "defaultImage": 'assets/images/no_product_image.png',
    'showShortDescription': true,
    ...
  },
  • Edit directly for design layouts in the lib/config/config_en.json file, for example:
{
   "HorizonLayout":[
      {
         "layout":"",     ///twoColumn, threeColumn, fourColumn, card, saleOff, listTile, quiltedGridTile, carousel
         "showShortDescription":true,
         ...
      }
   ],
   "VerticalLayout":{
      "layout":"",     ///pinterest, menu, card, columns, columnsWithFilter, topProducts, menuWithCustomCategories
      "showShortDescription":true,
      ...
   }
   "TabBar": [
      {
         "layout": "category",
         "categoryLayout": "card",     ///card, sideMenuWithSub, columns, topMenu, animation, grid, sideMenuWithSub, 
                                                          ///sideMenuWithGroup, ///multi-level, ///fancy-scroll
         "icon": "assets/icons/tabs/icon-category.png"
      },
   ],
   ...
}

(7) Share Link for Product List Configuration πŸ”—

Improved the Share Link feature to support more flexible product list configurations.
  • Remove previous limitations in link creation, ensuring shared links always navigate to the intended screen regardless of layout configuration.
  • Users can now generate and open share links correctly even when layouts are / are not tied to a specific category, brand, or tag.

IMPORTANT UPDATE
  • Upgrade(ios): migrateΒ OneSignalNotificationServiceExtensionΒ to adapt with Xcode 26
  • Allow to hide contact information in the store details screen
  • Improve(UI): show login prompt for WebView auth
  • Support loadmore in Menu with Custom Categories
  • Support multilingual for time ago in Realtime Chat
  • Chore: update phone field labels to comply with App Store guideline 5.1.1
This release contains many fixes
  • Fixed: Build ios due to recent FBSDKCoreKit release
  • Fixed: Slider video audio still plays for a millisecond then cuts off
  • Fixed: Not show categories when changing language
  • Fixed: Open product from side menu
  • Fixed: Remapped category images not overriding default icons
  • Fixed: Duplicate when refresh & load more
  • Fixed: Blog filter bug
  • Fixed: Skip hidden product on store details
  • Fixed: Onboarding image v2 is blurry
  • Fixed: Youtube video is not available
  • Fixed (share_plus): Avoid crash on iOS 26 when sharing
  • Fixed (OfflineMode): Doesn't support offline mode for PWA
  • Fixed: Some UI is incorrect in mobile PWA
  • Fixed (Webview): Handle permission camera & mic for android
  • Fixed (Webview): download base64 image to file
  • Fixed: Delayed when update price rates if enable MStore API caching
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v5.5.0

October 9th, 2025
Last updated: October 9th, 2025 - Link Purchase | Download
NEW FEATURE

πŸ”„ Core Updates

(1) Flutter 3.35.5 Upgrade ⬆

Upgrade latest Flutter channel stable v3.35.5
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.35.5, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
To fix build issue with new flutter version
After upgrading, you may meet the cache issue of iOS while building the application, please run this command to fix:
flutter precache --ios
πŸ’‘
In the new version, we have some breaking changes for Android platform:
  • UpgradedΒ compileSdkVersion 35Β toΒ compileSdkVersion 36
  • UpgradedΒ ndkVersion "25.1.8937393"Β toΒ ndkVersion "28.1.13356709"
  • Disable Impeller rendering engine (Android only)

(2) 16KB Memory Page Size Support πŸ‘

  • To ensure your app works correctly on the latest versions of Android, FluxStore 5.5.0 supports 16 KB memory page sizes to target Android 15+ by updating the NDK version and Rive dependencies.
  • You may request an extension to this deadline until May 1st, 2026, by following this guide.
You can disregard the Edge-to-edge warning.
You can disregard these warnings:
Edge-to-edge may not display for all users:
Your app uses deprecated APIs or parameters for edge-to-edge:

(3) FluxBuilder Dynamic Links Integration 🌟

A complete deep linking and tracking system that enhances navigation, marketing campaigns, and user engagement.
Manage everything easily through the FluxBuilder app builder.
πŸ‘‰Β Video guide
  • Project & Link Management
    • Added Create Projects Screen for developers to generate and configure deep link projects.
    • New Links Tables for managing all generated links, including validation and redirection rules.
notion image
  • Analytics & Tracking
    • Introduced Analytics Links Dashboard to monitor clicks, sessions, and conversions in real time.
notion image

(4) Offline Mode ✨

Added offline browsing capabilities with:
  • Offline status indicator
  • Cached loaded product and category data for use without internet
  • Automatic reconnection
  • Queued actions synchronized when back online
Configuration
Change the file lib/env.dart as below
Map<String, dynamic> environment = {
   ...
   "offlineModeConfig": {
        "enable": true,
    }
   ...
};
notion image
notion image

(5) Firebase Remote Config Update

Improved the handling of Firebase Remote Config to balance update frequency and quota limitations. When a new version is uploaded, it is fetched and cached immediately, but applied only on the next app launch.
Ensures stable updates without applying unexpected changes mid-session.

(6) Shopify Re-Order Functionality

Customers can now reorder previous purchases with one-click to reorder from order history with all original items, automatically selects correct product variants from previous orders, and add multiple items from past orders simultaneously.

(7) Shopify User Address Management System πŸ’«

Enhanced address management for Shopify users, including add, edit, set default, and delete address within the app.

πŸ–ΌοΈ UI & Layout Improvements

(8) Cart Item BoxFit Options

You can now update image BoxFit for cart items for more consistent visuals.
Configuration
Make changes in the file lib/env.dart as below:
  "cartDetail": {
    "minAllowTotalCartValue": 0,
    "maxAllowQuantity": 10,

    /// Cart Style: normal, style01
    "style": "style01",

+    /// Product Image Box Fit. Default: cover
+    "boxFit": "cover",
  },
notion image

(9) Video Background Layout 🎞️

Added support for video-based backgrounds on the home and dynamic screens, enabling immersive storefront experiences.
Configuration
Open the file lib/configs/config_en.json and add β€œvideo” for β€œBackground” as below:
Priority: video > image > color
  "Background": {
    "height": 1,
    "color": "#026DCD",
    "image": "https://trello.com/1/cards/5dc3b80702a7994eec2ea5d0/attachments/5dc3b80802a7994eec2ea5d1/download/woman.jpg",
+   "video": "https://storage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4",
+   "fit": null, // For Image only
    "isScrollable": false
  },

(10) Scrollable Backgrounds

Introduced scrollable backgrounds for home and dynamic screens for more flexible and engaging UI layouts. When scrolling home or dynamic screen, the background will also scroll together for a more natural effect. (Not applied for Tab Menu and Scrollable screens.)
Configuration
Open the file lib/configs/config_en.json and set β€œisScrollable” as below:
  "Background": {
    "height": 0.35,
    "color": "#026DCD",
    "image": "https://trello.com/1/cards/5dc3b80702a7994eec2ea5d0/attachments/5dc3b80802a7994eec2ea5d1/download/woman.jpg",
+   "isScrollable": true
  },

(11) Sub-Category Depth Display

Improved category display with support for showing multiple levels of sub-categories.
Configuration
Open the file lib/env.dart, and then configure as below:
    {
      "type": "image",
      "wrap": true,
      "horizontalItem": false,
      "columns": 4,
      "layout": "category",
      "marginLeft": 15.0,
      "marginRight": 15.0,
      "marginTop": 10.0,
      "marginBottom": 10.0,
      "separateWidth": 24.0,
      "shadow": null,
      "gradientStyle": false,
      "items": [
        {
          "originalColor": false,
          "backgroundColor": null,
          "title": null,
          "name": null,
          "keepDefaultTitle": false,
          "colors": [
            "ff3cc2bf",
            "ff3cc2bf"
          ]
        },
      "productCategoryMenuStyle": "tab",
      "categoryMenuShowDepth": true
    }
Note: β€’ categoryMenuShowDepthΒ : only support productCategoryMenuStyle that is "tab"

(12) App Exit Behaviors ♦️

Configurable app exit options for Android device mainly, including double-tap to exit, exit confirmation dialogs, and instant close.
We have also fixed the back behavior for webview app
Configuration
Set and select exit app type directly in the file lib/env.dart as below:
  "advanceConfig": {
+   /// systemDefault, exitImmediately, requireConfirmPopup, requireDoubleTap
+   "exitAppType": "requireConfirmPopup",
  },
notion image
notion image

🌐 WebView & Payment Enhancements

(13) Support for custom Thank You Page URLs πŸ’ž

Store owners can add custom/translated checkout success URLs. The app will auto-detect checkout success events on any platform with webview checkout.
Configuration
Open the file lib/env.dart, and then configure as below:
"paymentConfig": {
    /// List of possible slugs for the successful checkout page on the website.
    /// It will be used to determine when the order is placed successfully and
    /// closes the webview checkout screen, trigger the cart deletion action.
    /// Also displays the native thank you page.
+   "CheckoutSuccessPageSlug": [
+     "objednavka-prijata",
+     "thank-toan-thanh-cong",
+     "thank-toan/thanh-cong",
+     "/xac-nhan-don-hang",
+   ],
}

(14) Support for opening products directly in WebView

Now you can decide product type to open in Webview or Native Product Detail, giving you consistent logic and more flexible control (works for both product and listing apps).
Configuration
Open the file lib/env.dart, and set as below:
{
  "productCard": {
+   "typeShouldOpenInWebview": [],
    "boxFit": "cover",
    "boxShadow": null,
    "defaultImage": "assets/images/no_product_image.png"
  },
}
Demo
    "typeShouldOpenInWebview": [
      "grouped",
      "auction",
      "external",
      "subscription",
      "appointment",
    ]

(15) External links open in the system browser instead of in-app WebView

Any URL that is not part of your app will now open in the external browser instead of inside the in-app webview. This makes navigation clearer, prevents broken flows, and gives users a smoother experience.
Configuration
Open the file lib/env.dart and configure as below:
  "advanceConfig": {
-   /// Disable inAppWebView to use webview_flutter
-   /// so webview can navigate to external app.
-   /// Useful for webview checkout which need to handle payment in another app.
-   "inAppWebView": false,
-   'AlwaysClearWebViewCache': false,
-   'AlwaysClearWebViewCookie': false,
-   "WebViewScript": "",
  },
+  "webViewConfig": {
+    "webViewMode": "webViewFlutter", // `inAppWebView` or `webViewFlutter`
+    "alwaysClearWebViewCache": false,
+    "alwaysClearWebViewCookie": false,
+    "webViewScript": "",

+    /// List of domains that should open the external app instead of the webview.
+    /// Just add the domain name only, do not add full URL. For example: "example.com"
+    /// If not set, we will use our default list from [kExternalDomains]
+    "externalDomains": [],

+    /// List of domains that should be loaded in the webview.
+    /// If the list is empty, all domains will be opened in the webview if it is
+    /// not in [externalDomains]. Otherwise, if the domain is not in this list, it
+    /// will be opened in the external browser.
+    /// Just add the domain name only, do not add full URL. For example: "example.com"
+    "internalDomains": [],
+  },
Default External domains list:
const kExternalDomains = [
  'wa.me', // Whatsapp
  'wa.link', // Whatsapp
  'api.whatsapp.com', // Whatsapp
  'm.me', // Messenger
  'messenger.com', // Messenger
  'www.messenger.com', // Messenger
  'ig.me', // Instagram
  'instagram.com', // Instagram
  'www.instagram.com', // Instagram
  'x.com', // X
  'facebook.com', // Facebook
  'www.facebook.com', // Facebook
  'youtube.com', // Youbute
  'www.youtube.com', // Youbute
  'youtu.be', // Youbute
  't.me', // Telegram
  'telegram.org', // Telegram
  'play.google.com', // Google play
  'apps.apple.com', // App store
  'zalo.me', // Zalo
];
πŸ’‘
IMPORTANT UPDATE
  • πŸ’₯ Refactor!: drop support Firebase Dynamic Link
  • Drop support the Better REST API Featured Images plugin
  • Clarify the address by showing more details
  • Update productListItemHeight config in Animation Category Layout
  • Recalculate lineHeight in ProductTitle
  • Add height config in Top Products Layout and Quilted Grid Tile
  • Refactor: hide Firebase realtime chat/WCFM Live chat if disable instead of show error
  • Chore(ui): phone input alignment in RTL languages
  • Add Product List Item Height config to support product card configs in Fancy scroll layout
  • Refactor: show increment_id instead of entity_id for order Magento
  • Support textarea for WooCommerce product addons
This release contains many fixes
  • Fixed: Edge to Edge issue on Android 15
  • Fixed: cannot build android due to com.facebook.android:facebook-android-sdk error
  • Fixed: cache/delay fees/taxes issues when checkout
  • Fixed (YithProductAddons): input style when open bottomshet at home screen
  • Fixed: exception when loading country
  • Fixed: spacing in checkout success UI screen
  • Fixed: not update color when change theme for dialog add to cart
  • Fixed: corner cart overlaps button in flat style
  • Fixed (Magento): type cast exception when fetching products
  • Fixed: render html for product description in Magento
  • Fixed: crash when open midtrans payment for android release mode
  • Fixed: change tab without initial tab data
  • Fixed: back behavior for webview
  • Fixed: crash android app if pay with stripe
  • Fixed: Can't show category name [MyListing, ListingPro]Β 
  • Fixed: my rating not showing on listing woo app
  • Fixed: parse margin for product badge
  • Fixed: get first currency if default currency is null
  • Fixed: Show corresponding error code and fix issue when login
  • Fixed (review): type cast exception, not show on product detail
  • Fixed: type cast error for include param in boost engine request
  • Fixed: always show first tab instead of default tab
  • Fixed: opencart does not show image properly
  • Fixed (Wallet): Pay by wallet option display for smaller order price
  • Fixed: show id only as delay or not load brand in filter
  • Fixed: comma and dot position in currency
  • Fixed: price range on listing card
  • Fixed: show shipping fee without tax
  • Fixed: multi language for Product review
  • Fixed: not apply alignment for title of menu list item
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?


v5.3.0

Jun 2nd, 2025
Last updated: Jun 2nd, 2025 - Link Purchase | Download
NEW FEATURE

(1) Flutter 3.32.x Upgrade πŸ”₯

Upgrade latest Flutter channel stable v3.32.x
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.32.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version ☘️
To fix build issue with new flutter version
After upgrading, you may meet the cache issue of iOS while building the application, please run this command to fix:
flutter precache --ios

(2) Login via Email OTP πŸ’₯

  • Now users can log in instantly by entering their existing Shopify email. The app sends a secure OTP code, and just like that β€” they’re in.
    βœ… No need to create a new account
    βœ… OTP sent directly to their Shopify email
    βœ… Fast, password-free access
  • Demo video

(3) Fully migrate to new CartAPI πŸŽ‰

  • Enjoy lightning-fast cart updates and smoother checkout flows thanks to our full migration to Shopify’s new CartAPI.
  • Upgrade to the new FluxStore Shopify version now!

(4) Show/Hide Indicator for Banner Items ✨

  • Add an optional dot indicator for banners on Home screen via showIndicator config β€” now fully customizable.
  • Demo Screenshot
    notion image
Configuration
Open lib/config/config_en.json, add showIndicator into banner config
{
    "showIndicator": false
}

(5) Smart Banner (PopUp): Allow Tap Outside To Close βœ‹

  • Make popups feel more natural! Users can now simply tap outside the banner to close it. Smooth, intuitive UX unlocked.
Configuration
Edit the lib/config/config_en.json
"SmartEngagementBanner": {
      "popup": {
        "allowTapOutsideToClose": true, // Default: false
        "iconSize": 36,
      },
    }

(6) Product Detail: Update Configurations for Videos 🎯

  • Pause or play the video the first time opening Product Detail.
  • Mute or play video sound the first time opening Product Detail.
  • Show or hide the time indicator.
  • Allow double-tapping to open the video in full screen.
Configuration
Edit the lib/config/config_en.json
  "productDetail": {
    /// Video config
    "showVideo": true,
    "isSoundOn": false,
    "autoPlayVideo": false,
    "enableTimeIndicator": true,
    "doubleTapToFullScreen": true,
}

(7) Product Detail: Show/Hide Share Product Data πŸ“€

  • Now you can show or hide the Share Product Data button on the product detail page with a simple config setting.
  • Demo Screenshot
    notion image
Configuration
Edit the productDetail config in the lib/env.dart file as below:
  "productDetail": {
    // Allow share product data. Default: true
    "allowShareProductData": false,
  }

(8) Product Title Text Scaling and Height Calculation πŸ” 

  • Better UI consistency with automatic scaling and height adjustment for product titles.
  • The feature is available on the app without configuration.
  • Demo Screenshot
    notion image

(9) Shopify: Apply order-level discounts and fix price calculation

  • The feature allow Order-level discounts and fix discount price calculation
notion image

IMPORTANT UPDATE
  • πŸ’¦ Fix iOS build issue with FBSDKLoginKit
  • πŸ†™Β Update Khmer translation
  • βŒ› Support firebase analytics consent mode v2
  • πŸ”°(CartButtonWithQuantity): enhance animation and uiΒ 
  • πŸ”· Update status translation in SmartRefresherΒ 

This release contains many fixes
  • Fixed (Android): build with name containing single quotation marks
  • Fixed: show correct item subtotal & add discount to order detail
  • Fixed: issue payment myfatoorah with apple pay
  • Fixed (HTML): hide unsupport noscript tag
  • Fixed (ProductFutureBuilder): issue rendering on homepage when there are multiple future builder items
  • Fixed (Notification): issue push Firebase image notification on iOS
  • Fixed: heart icon still show even if disable
  • Fixed ensureΒ discountAllocationsΒ is a list inΒ CartLineShopifyΒ model
  • Fixed (RateMyApp): native dialog not working on anroid
  • Fixed (AppBar): navigator to current tab and open side menu
  • Fixed: build ios due to FBSDKLoginKit upgrade
  • Fixed (StaticSite): dupplicate app bar
  • Fixed (MyCartScreen): The price of product on My Cart is incorrect after backing from PAYMENT page with Pay By Wallet
  • Fixed (aboutUs): pageId not working and open Envato link
  • Fixed: webview_flutter can't scrolling when alwaysShowTabBar and ZoomStyle are enabled
  • Fixed (RealtimeChat): chat UI in RTL
  • Fixed (RealtimeChat): cannot show list chat for admin to customer
  • Fixed (CartUI): open cart in product bottom sheet when enabling alwaysShowTabBar/alwaysShowAppBar
  • Fixed: improve notification badge icon click behavior
  • Fixed (VariableSubscriptionProduct): issue don't show attribution in detail product and missing info in my cart
  • Fixed (ColorConverter): covert color to hex string
  • Fixed (SliderListWidget): add more run space
  • Fixed: escape string some where
  • Fixed (CategoryScreen): Home page image reload issue when using SideMenuSubCategories
  • Fixed (VerticalLayout): "Loading" text always display on List/ Column layout if there are fewer than 9 products
  • Fixed: version from env is null but default is v2
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v5.2.0

March 3rd, 2025
Last updated: March 3rd, 2025 - Link Purchase | Download
NEW FEATURE

(1) Flutter 3.29.x Upgrade πŸ”₯

Upgrade latest Flutter channel stable v3.29.x
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.29.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version ☘️
To fix build issue with new flutter version
After upgrading, you may meet the cache issue of iOS while building the application, please run this command to fix:
flutter precache --ios

(2) Support padding and align for indicator and number ✨

Added support for custom padding and alignment to improve UI flexibility of the banner’s indicator.
Demo Screenshot
notion image
Configuration
Edit the lib/config/config_en.json as below:
{
    "HorizonLayout": [
        {
            "layout": "bannerImage",
            "isSlider": true,
            ...
            "indicatorPadding": {
                "bottom": 12,
                "start": 30
            },
            "alignmentNumber": {
                "value": "topEnd" // topStart, topCenter, topEnd, centerStart, centerCenter, centerEnd, bottomStart, bottomCenter, bottomEnd
            }
            "indicatorAlignment": {
              "value": "topCenter" // topStart, topCenter, topEnd, centerStart, centerCenter, centerEnd, bottomStart, bottomCenter, bottomEnd
            },
            ...

        },
        ...
    ],
    ...
}

(3) New Tab Menu Category 🌸

Easily navigate product categories with our refreshed tab-style menu! This clean and modern UI helps users browse by category faster and more intuitively β€” perfect for improving shopping experience and boosting engagement.
Configuration
Edit the file lib/config/config_en.json as below:
"productCategoryMenuStyle": "tab”

(4) Blog Service πŸ›‘οΈ

Certain frameworks now support both their native blog system and WordPress blogs (including Shopify, Notion, and BigCommerce).
Other frameworks will support WordPress blogs only.

(5) Display images in notifications on iOS πŸ‘‘

FluxStore now supports displaying notification's image in the device's notification board.
Demo Screenshot
notion image

(6) Support Telugu language βŒ›

Expanded localization with Telugu language support.

IMPORTANT UPDATE
  • πŸ”† DeepLink: fixed issue when using third-party plugins to handle deep links
  • πŸ’₯ Enhancing permission request flow for better user experience
  • πŸ’¦ Hotfix (HomeCache): home cache was cached with HTTP cache
  • 🎨 (Menu Category): upgrade workflow when open category and support tab menu category
  • 🧨 Improve (MyCart): show point input when show keyboard in my cart
  • 🌟 Add missing SimpleList layout in Filter
  • βŒ› Override systemNavigationBarColor
  • πŸ”° Improve (TabBarCustom): support change background color when show floating
  • ▢️ Support search product using Get method in Ajax Search Pro
  • πŸ”· Update notification permission flow
  • 🌐 Support Multi Languages in TimeAgo

This release contains many fixes
  • Fixed (ProductPrice): issue not found priceData when render ProductPrice (FluxStore Web)
  • Fixed: padding between flag and language name - popup onboarding
  • Fixed (NotionCheckout): wrong order status and order total value
  • Fixed (VideoShopping): not fetch correct video language
  • Fixed: comment review in ListingPro theme
  • Fixed (MapParent): convert category to root when the parent is not set
  • Fixed: show shipping fee for order details opencart
  • Fixed: issues related filter bottom sheet
  • Fixed (Digits): show wrong error message if phone is not exist
  • Fixed (Webview): Crash when opening webview on iOS
  • Fixed: booking calender color and addons alignment
  • Fixed (SelectionQuantity): issue changing value without supporting quantity Step
  • Fixed: Remove unused SafeArea widget
  • Fixed (AppTracking): Because on iOS 18 there is an issue where permission popups conflict
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v5.1.1

Last updated: 23th February, 2025 - Link Purchase | Download
We would like to formally announce that starting from FluxStore Shopify version 5.1.1, we will officially implement Shopify's CartAPI, as CheckoutAPI will be fully deprecated in April 2025 (refer to this LINK).
Please note that the current CartAPI does not yet fully support Native Payment functionality through ApplePay/GooglePay or Credit/Debit cards as CheckoutAPI does. Therefore, we recommend that users currently utilizing these payment features continue using the CheckoutAPI version. New users will need to implement CartAPI as CheckoutAPI is no longer available for new implementations. Shopify has indicated through their API previews that Native Payment functionality is under development for CartAPI, and we will continue to provide updates on this matter.
To facilitate seamless switching between CheckoutAPI and CartAPI, you may configure the "version" variable in source code; navigate to lib/env.dart:
"serverConfig": {
// another config
"version": 1,
},
  • Version 1: uses CheckoutAPI
  • Version 2: uses CartAPI

Earlier releases

15 more releases shipped before v5.1.1. They are part of the same lifetime-update license.

  • v5.1.0
  • v5.0
  • v4.3.0
  • v4.2.0
  • v4.1.0
  • v4.0
  • v3.16.8
  • v3.16.0
  • v3.13.6
  • v3.13.0
  • v3.10.5
  • v3.10.0
  • v3.8.0
  • v3.7.0
  • v3.4.0