diff --git a/docs/accounts-billing/imgs/pricing-timeline-2025-dark.png b/docs/accounts-billing/imgs/pricing-timeline-2025-dark.png index 6d1de0a3..521f6422 100644 Binary files a/docs/accounts-billing/imgs/pricing-timeline-2025-dark.png and b/docs/accounts-billing/imgs/pricing-timeline-2025-dark.png differ diff --git a/docs/accounts-billing/imgs/pricing-timeline-2025-light.png b/docs/accounts-billing/imgs/pricing-timeline-2025-light.png index cb1d6056..8f34e71b 100644 Binary files a/docs/accounts-billing/imgs/pricing-timeline-2025-light.png and b/docs/accounts-billing/imgs/pricing-timeline-2025-light.png differ diff --git a/docs/accounts-billing/new-pricing-comparison.md b/docs/accounts-billing/new-pricing-comparison.md new file mode 100644 index 00000000..4d32db4c --- /dev/null +++ b/docs/accounts-billing/new-pricing-comparison.md @@ -0,0 +1,793 @@ +--- +slug: plan-comparison +title: "Plan Comparison" +description: "Compare FlutterFlow plans and features to find the right plan for your needs" +hide_table_of_contents: true +sidebar_position: 3 +--- + + + + + +import {useState, useEffect} from 'react'; + +export const PricingToggles = () => { + const [currency, setCurrency] = useState('USD'); + const [billingPeriod, setBillingPeriod] = useState('monthly'); + + // Update sticky header when pricing changes + useEffect(() => { + // Trigger sticky header recreation when pricing data changes + const event = new CustomEvent('pricingChanged'); + window.dispatchEvent(event); + }, [currency, billingPeriod]); + + const pricingData = { + USD: { + monthly: { + free: 0, + individual: 39, + growth: '1st seat: $80, \n 2nd seat: $55', + business: '1st seat: $150, \n Seats 2-5: $85 each*', + enterprise: 'Custom' + }, + annual: { + free: 0, + individual: 351, // $360/year = $30/month effective + growth: '1st seat: $720, \n 2nd seat: $495', + business: '1st seat: $1,350, \n Seats 2-5: $765*', // $4752/year = $396/month effective + enterprise: 'Custom' + } + }, + INR: { + monthly: { + free: 0, + individual: 1300, // Official INR rate + growth: '1st seat: ₹2,650, \n 2nd seat: ₹1,850', // Official INR rate + business: '1st seat: ₹5,100, \n Seats 2-5: ₹2,850 each*', // Official INR rate + enterprise: 'Custom' + }, + annual: { + free: 0, + individual: 11700, // ₹11,700/year = ₹975/month effective + growth: '1st seat: ₹27,000, \n 2nd seat: ₹13,500', + business: '1st seat: ₹45,900, \n Seats 2-5: ₹25,650*', + enterprise: 'Custom' + } + } + }; + + const formatPrice = (price) => { + // Return the string directly if the price is a string + + if (typeof price === 'string') return price; + + if (currency === 'USD') { + return `$${price}`; + } else { + return `₹${price.toLocaleString('en-IN')}`; + } + }; + + const getPeriodText = () => { + return billingPeriod === 'annual' ? ( + <> + billed annually + + ) : 'per month'; + }; + + const currentPrices = pricingData[currency][billingPeriod]; + + return ( +
+
+ {/* Currency Toggle */} +
+ Currency: +
+ + +
+
+ + {/* Billing Period Toggle */} +
+ Billing: +
+ + +
+ {billingPeriod === 'annual' && ( + + Save ~25% + + )} +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PlanFree
{formatPrice(currentPrices.free)}
{getPeriodText()}
Basic
{formatPrice(currentPrices.individual)}
{getPeriodText()}
Growth
{formatPrice(currentPrices.growth)}
{getPeriodText()}
Business
{formatPrice(currentPrices.business)}
{getPeriodText()}
Enterprise
{formatPrice(currentPrices.enterprise)}
pricing
Core Platform Features
Visual Development Environment
Drag & drop builder for creating apps visually
1K+ Prebuilt Templates
Ready-to-use app templates and components
Project Count
Number of projects you can create
2 projectsUnlimitedUnlimitedUnlimitedUnlimited
AI Generation
AI-powered assistance for building and coding
5 requests/lifetime50 requests/mo200 requests/mo500 requests/moCustom
Data & Integrations
Firebase Integration
Connect to Firestore, Firebase Auth, and more
Supabase Integration
Connect to Supabase for database and auth
AI Agents
Create AI agents with OpenAI, Anthropic, and Google
01UnlimitedUnlimitedUnlimited
API Endpoints
Connect to external APIs and services
2UnlimitedUnlimitedUnlimitedUnlimited
Swagger/OpenAPI Imports
Import API specifications automatically
Development Environments
Separate databases and configuration values for testing and production
1 (default only)1 (default only)Up to 1 additional (+default)Up to 2 additional (+default)Custom
Development Features
Code Extensibility
Add custom code to extend functionality
Live Debugging
Test your app in the browser and hot reload
Visual Logic Builder
Create app logic with a visual editor
State Management
Manage app data and user interface states
Custom Code Expressions
Write custom expressions and logic
One-Click Localization (i18n)
Automatically translate your app using Google Translate API
Push to GitHub
Push your project code to GitHub
VS Code Extension
Sync custom code files back and forth between FlutterFlow and VS Code
Automated Testing
Run automated tests on your applications
Up to 3 tests per projectUnlimited tests
Custom Classes
Bring custom Dart classes into your app
YAML Editing
Refactor your project with by editing the YAML representation
Project API
Programmatic access to project data
MCP Server (Experimental)
Model Context Protocol server integration
Cloud Functions
Write and deploy Firebase Cloud Functions directly from FlutterFlow
CLI
Command-line interface for downloading code and project management
Configuration File Snippets
Directly modify Info.plist, main.dart, Android manifest, and other config files
Local Run Desktop Emulator
Run code locally with automatic environment setup
Design Features
Design Systems
Consistent color schemes, typographic, icons, and more
Animations & Haptic Touch
Add animations and haptic feedback to your app
Custom Fonts & Icons
Upload and use custom fonts and icons
Custom Typography Presets
Create reusable text styles and presets
Screenshot Generator
Generate app screenshots automatically for App Store review
Figma Theme Import
Import color and typography themes from Figma
Figma Frame Import
AI-powered import of Figma frames to FlutterFlow
100 requests/moCustom
Advanced App Features
Push Notifications
Send notifications to app users
Payments Integration
Integrate Stripe and other payment providers
Ads Integration
Monetize your app with advertisements
Third-Party Package Imports
Add pub.dev packages and GitHub dependencies
Debug Panel
Advanced debugging tools and console
Collaboration Features
Number of Editors
Team members who can edit projects
11Up to 2Up to 5*Unlimited
Single Project Collaborator Add-Ons
Allow non-team members to collaborate on a single project
NoneNoneUp to 4 collaborators available for purchaseUp to 10 collaborators available for purchaseN/A (unlimited team editors)
Real-Time Collaboration
Work together on projects simultaneously
Project Commenting
Add comments and feedback to projects
Manual Commits
Make explicit named commits to the current branch for version control
Number of Branches
Create and manage multiple project branches (all plans include main branch)
1 (main only)1 (main only)Up to 2 open branches (+main)Up to 5 open branches (+main)Custom
Automated Snapshot Backups
Automatic project backups and version control
Up to 1 hour priorUp to 1 day priorUp to 3 days priorUp to 7 days priorCustom
Activity Logging
Track project changes and user activity
Project Level Access Control
Manage permissions for individual projects
Manage view-only collaborators onlyManage view-only collaborators only
Centralized Billing
Manage team billing from one account
Library Features
Library Imports
Add FlutterFlow libraries to your projects
Library Publishing
Publish your projects as reusable libraries
Deployment
Web Deployment
Deploy your app as a web application
Free Subdomains
Deploy your web app to FlutterFlow subdomains
Up to 2Up to 20Up to 20Up to 20Unlimited
Custom Domains
Deploy to your own custom domain
1 free domain, more available for purchase1 free domain, more available for purchase1 free domain, more available for purchaseCustom
Custom Web Favicon
Set custom favicon for web publishing
FlutterFlow Watermark Removal
Remove FlutterFlow branding from published apps
Code Download
Download your project's source code
APK Download
Download Android APK files
One-Click Apple & Google Store Deployment
Deploy directly to app stores with one click
Support
Account and Billing Support
Help with account management and billing questions
Community Support
Access to FlutterFlow community forums
Email Support
Get help via email from our support team
In-App Support
Chat support directly within FlutterFlow
Dedicated Live Support
Direct access to dedicated support specialists
Advanced Controls & Extensibility
Version Pinning
Control FlutterFlow platform upgrades
Single Sign-On (SSO)
Integrate with your organization's SSO provider
Accessibility
Advanced accessibility features and compliance
Access to Custom Engineering Solutions
Custom development and engineering support
+
+ ); +}; + +# Plan Comparison + +Choose the plan that fits your development needs and team size. + +
+
+ ← Scroll horizontally to see all plans → +
+ + +
+ +## Business Plan Extensions + +### *Agencies Expansion +Includes all Business features, plus the ability to add up to 7 additional seats (12 total per team) at **$85/seat/month** (USD) or **₹2,850/seat/month** (INR) and collaborate with up to 20 other paid users at the project level via Single Project Collaborator Passes. Must be approved as an Expert Agency via [Contra](https://contra.com/opportunity/rWlmk2Yv-become-a-flutter-flow-agency). + +### Localized Pricing +INR pricing reflects localized rates adjusted for local purchasing power, providing the same features and plan structures as USD pricing. All plans include the same comprehensive feature set regardless of currency. \ No newline at end of file diff --git a/docs/accounts-billing/plan-pricing.md b/docs/accounts-billing/plan-pricing.md index a4ee096c..6acefb01 100644 --- a/docs/accounts-billing/plan-pricing.md +++ b/docs/accounts-billing/plan-pricing.md @@ -27,121 +27,17 @@ FlutterFlow has evolved significantly, from a visual builder to a complete devel ### What's Changing? -As part of broader improvements to the platform, FlutterFlow is updating its pricing and packaging model effective **August 4, 2025**. The update introduces new plan tiers aligned with team size, simplifies billing, and ensures better alignment between user needs and platform capabilities. +As part of broader improvements to the platform, FlutterFlow is updating its pricing and packaging model effective **August 18, 2025**. The update introduces new plan tiers aligned with team size, simplifies billing, and ensures better alignment between user needs and platform capabilities. **Key Changes** -- We're retiring our legacy plans: **Standard**, **Pro**, and **Teams** and introducing a new, simplified lineup: **Free**, **Individual**, **Growth**, **Business**. Our Enterprise offering will continue as is, providing advanced features and support for larger teams. +- We're retiring our legacy plans: **Standard**, **Pro**, and **Teams** and introducing a new, simplified lineup: **Free**, **Basic**, **Growth**, **Business**. Our Enterprise offering will continue as is, providing advanced features and support for larger teams. - If you're already using FlutterFlow, you'll be automatically moved to the new plan that best fits your current team size. No action needed on your part. - That said, feature access will look a little different. Some users will gain powerful new capabilities, while others might see a few features move to higher tiers. -### Detailed Plan Changes -:::warning[Regional Pricing] -The prices listed below are base rates. Regional pricing will continue to apply where applicable, just as before. -::: +To understand how each new plan compares, **[view the detailed plan comparison](new-pricing-comparison.md).** -Below are the details on all the changes, so you'll know exactly what to expect: - - - -
-
Scroll to see all plan details →
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current PlanNew PlanWhat's Changing?
Solo Plans
Free ($0)Free ($0) -
    -
  • 2 count project limit
  • -
  • Swagger/OpenAPI imports not available
  • -
  • No debug panel, payments/ads integrations, or snapshot backups
  • -
  • No access to technical support
  • -
  • Can now import libraries
  • -
-
Standard ($30)Individual ($39) ⬆️ -
    -
  • Unlimited API endpoints
  • -
  • One-click app store deployment available
  • -
  • Snapshot backups are not accessible
  • -
  • 1 Automated Test (per project)
  • -
  • 1 Development Environment (per project)
  • -
  • Email access only to technical support
  • -
-
Pro ($70)Individual ($39) ⬇️ -
    -
  • GitHub sync, one-click localization, commenting, and backup snapshots not available
  • -
-
Collaboration Plans
Teams ($140)
2 users
Growth ($135) ⬇️ -
    -
  • Branching and audit logs not available
  • -
  • Automated backup snapshots limited to 1 day
  • -
-
Teams ($210–$350)
3–5 users
Business ($495) ⬆️ -
    -
  • Branching capped at 5 open branches
  • -
  • Audit logs not available
  • -
  • Automated backup snapshots limited to 5 days
  • -
-
Teams ($420+)
6+ users
Enterprise (Contact Sales) ⬆️ -
    -
  • Same as above
  • -
  • Enterprise plan required for existing users to scale beyond 5 users or 5 open branches 12-months after cutover
  • -
-
-
## FAQS @@ -156,6 +52,7 @@ Who is affected by this pricing change? All current Free, Standard, Pro, and Teams plan users will move to the new structure. Enterprise customers on custom contracts are not affected by these changes. +

@@ -164,11 +61,11 @@ Enterprise customers on custom contracts are not affected by these changes. When does the new pricing take effect for me?

-- For new users, the pricing and packaging will apply immediately on August 4, 2025. After this date, no legacy plans (Standard, Pro, Teams) can be purchased or updated. -- For existing Free, Standard, Pro, and Teams plan users, billing and feature access will remain unchanged during a **30-day transition period** where you will have the ability to elect into a new plan. On September 4, 2025, your account will be moved to one of the new plans if no action is taken. - - **Important exception:** If you're currently on a Teams plan, you will no longer be able to use your team features on personal projects starting August 4, 2025. To maintain existing Teams plan feature access on those projects, you must either: +- For new users, the pricing and packaging will apply immediately on August 18, 2025. After this date, no legacy plans (Standard, Pro, Teams) can be purchased or updated. +- For existing Free, Standard, Pro, and Teams plan users, billing and feature access will remain unchanged during a **30-day transition period** where you will have the ability to elect into a new plan. On September 17, 2025, your account will be moved to one of the new plans if no action is taken. + - **Important exception:** If you're currently on a Teams plan, you will no longer be able to use your team features on personal projects starting August 18, 2025. To maintain existing Teams plan feature access on those projects, you must either: - Move your personal projects into your Team, or - - Convert your current Teams plan to a new Growth or Business plan and purchase a separate Individual plan for your personal work. + - Convert your current Teams plan to a new Growth or Business plan and purchase a separate Basic plan for your personal work. - **Note:** All plan updates will take effect at 12:00 AM local time on the specified effective date.

@@ -188,9 +85,10 @@ When does the new pricing take effect for me? Why is FlutterFlow updating its pricing?

-When we launched FlutterFlow, we had one goal: make it radically easier to build beautiful, powerful digital products. Four years later, we're a full development platform that goes from idea to app store. We now have collaboration features, AI tools, lots of integrations, branching, development environments, and more, built in. +When we launched FlutterFlow, we had one goal: make it radically easier to build beautiful, powerful digital products. Four years later, we’re a full development platform that goes from idea to app store. We now have collaboration features, AI tools, lots of integrations, branching, development environments, and more, built in. + +Now our plans are evolving to reflect that growth. We’ve introduced new features across every tier and restructured our plans to better align with the way people build today and how their needs change as they move from MVP to scaling production apps. -Now our plans are evolving to reflect that growth. We've introduced new features across every tier and restructured our plans to better align with the way people build today and how their needs change as they move from MVP to scaling production apps.

@@ -212,7 +110,7 @@ The new plans introduce pricing by team size and more structured feature access
  • Revised pricing structure, with updated USD and INR rates.
  • -For a detailed comparison of the current and new plans, including feature breakdown and pricing, please see the [Detailed Plan Changes](#detailed-plan-changes) table above. +For a detailed comparison of the current and new plans, including feature breakdown and pricing, please see the **[Detailed Plan Changes](new-pricing-comparison.md)** table above.

    @@ -220,10 +118,10 @@ For a detailed comparison of the current and new plans, including feature breakd Which plan is best suited for different types of users? -

    We recommend:

    +

    The tiers are designed as a general guide to help highlight which plans tend to work best for different types of use cases, but we know that every user’s needs are different and you’re always welcome to choose the one that works best for you. That said, here’s how we generally recommend thinking about the tiers based on common usage patterns: