FluxStore 6.3.0 prepares Android builds for the latest Google Play requirements and brings a substantial set of navigation, storefront, security, localization, and checkout improvements to FluxStore apps.
The release introduces iOS 26-inspired liquid glass tabs, floating and minimizable tab bars, configurable filters, secure screens, more than 85 supported languages, and new WooCommerce checkout integrations.
Release highlights
- Android 16 readiness with API level 36 targeting and an updated RevenueCat Purchases dependency.
- Three new tab bar options for minimized, liquid glass, and floating navigation styles.
- More storefront control over filters, video sorting, testimonials, prices, and external-product buttons.
- Stronger privacy with screenshot and screen-recording protection for selected screens or the entire app.
- Expanded checkout support for custom fields, delivery times, Cashfree payments, and delivery availability.
- More localization options with 29 additional languages and more than 85 languages supported in total.
Before you upgrade
Update your dependencies to the latest versions compatible with FluxStore 6.3.0. WooCommerce and MultiVendor projects using video shopping, checkout fields, delivery time, or Cashfree must also install the latest MStore API plugin.
For an existing project, follow the source code and Flutter upgrade guide. Add your purchase code to configs/env.props before running the app.
Android 16 and Google Play policy updates
Android builds now target Android 16, API level 36. FluxStore also updates com.revenuecat.purchases:purchases to the latest compatible version.
These changes help apps meet Google Play publishing requirements while improving compatibility with current Android platform capabilities.
New tab bar experiences
Minimize the tab bar
All FluxStore apps can now minimize the bottom tab bar to give page content more room.
{
"TabBarConfig": {
"showMinimize": true
}
}
Add an iOS 26-style liquid glass effect
The new liquid glass rendering mode applies a translucent, fluid visual treatment to the tab bar background.
{
"TabBarConfig": {
"liquidGlass": true
}
}
Watch the liquid glass tab bar demo.
Use a floating tab bar
The floating style places the bottom tab bar above the page content. Combine it with margin, border-radius, and shadow settings to create a floating pill layout.
{
"TabBarConfig": {
"floating": true
}
}
Storefront and discovery controls
Sort video shopping content
WooCommerce and Shopify apps can configure the order of video shopping content. This feature requires the latest MStore API plugin for WooCommerce.
{
"layout": "videos",
"icon": "assets/icons/tabs/icon-videos.png",
"styleVersions": ["1", "2"],
"order": "asc",
"orderby": "date"
}
orderby accepts date, modified, title, rand, id, or menu_order. Use asc or desc for order.
Customize the filter screen
Choose which layout, sorting, price, category, location, brand, tag, feature, and attribute controls appear on the filter screen.
{
"filterConfig": {
"showLayout": true,
"showSort": true,
"showPriceSlider": false,
"showCategory": false,
"showListingLocation": false,
"showBrand": false,
"showTag": false,
"showFeature": false,
"showAttribute": false,
"supportedSortByOptions": ["date", "price"]
}
}
Supported sort values include onSale, featured, date, price, title, popularity, rating, menu_order, rand, and relevance. An empty or null list keeps the default options for the selected framework.
More product and content presentation options
- New testimonial style variants provide more choices for home and content layouts.
- Deep links inside HTML content, including product descriptions and blog posts, can now open the appropriate native app destination.
- Product details can hide or show prices with the new
showPricesetting. - WooCommerce external products now use the custom button text set by the store administrator, with Buy now as the fallback.
{
"productDetail": {
"showPrice": true
}
}
The testimonial component also includes card, chat, modern, minimal, gradient, quote, and glass presentation styles.
Authentication, localization, and privacy
Configure the SMS OTP length
SMS providers that use a verification code other than the six-digit default can now set the expected OTP length.
{
"authConfig": {
"providers": {
"sms": {
"otpLength": 6
}
}
}
}
More than 85 supported languages
FluxStore 6.3.0 adds Afrikaans, Filipino, Nepali, Assamese, Belarusian, Tibetan, Welsh, Basque, Irish, Galician, Swiss German, Gujarati, Croatian, Armenian, Icelandic, Kyrgyz, Latvian, Macedonian, Malayalam, Mongolian, Norwegian Bokmål, Odia, Punjabi, Pashto, Slovenian, Tagalog, Uyghur, and Zulu.
Protect sensitive screens
Secure screen configuration can block screenshots and screen recording across the whole app or only on selected routes.
{
"secureScreenConfig": {
"enable": false,
"screens": []
}
}
Set enable to true and leave screens empty to protect the entire app. Add route names to screens when protection should apply only to specific areas.
Phone number verification has also been upgraded for better stability and broader format support. The update fixes missing phone numbers and preserves the entered number when customers return to the address screen.
WooCommerce checkout and payments
Checkout Fields Manager
WooCommerce and MultiVendor apps now support the Woo Checkout Field Manager and Checkout Field Editor plugins, including the ship-to-different-address flow.
{
"advanceConfig": {
"EnableWooCheckoutFieldManager": true
}
}
Delivery time during checkout
Customers can select a delivery time during checkout and review it later in their order history.
{
"advanceConfig": {
"EnableDeliveryDateOnCheckout": true
}
}
See the delivery date and time configuration guide for setup details.
Cashfree payment gateway
Cashfree is now available for WooCommerce, MultiVendor, and FluxStore MAX Multisite apps.
{
"cashfreeConfig": {
"paymentMethodIds": ["cashfree"],
"enabled": true
}
}
Install and activate the Cashfree for WooCommerce plugin, then update MStore API before enabling this configuration.
Delivery availability in profile settings
WooCommerce and MultiVendor apps can expose the deliveryOnline option in profile settings.
{
"defaultSettings": [
"deliveryOnline"
]
}
Fixes and dependency updates
FluxStore 6.3.0 refreshes the compatible dependency set and includes the following fixes:
- Updated
salesiq_mobilistento resolve an iOS build issue. - Fixed external WebView links not opening on Android.
- Reduced the delay on the notification permission screen.
- Improved error messages when sending an OTP fails.
- Prevented excessive address requests when the app bar has no location item.
- Fixed the gray keyboard gap in WebView.
- Fixed unexpected Smart Chat visibility.
- Restored missing store information when updating settings in the Listeo and Dokan integration.
- Restored missing variant price ranges in
ProductSimpleView. - Fixed a Terra wallet issue.
- Corrected download-button visibility for non-downloadable products.
- Fixed Arabic attribute names when creating or updating product attributes.