Skip to main content

What is a Project?

A Project in FlutterFlow represents a complete Flutter application. It contains all the generated code for a Flutter app. This means that you can export your code and your app will run as a normal Flutter app without requiring FlutterFlow.

A FlutterFlow project includes all the files and packages generated by the flutter create command, along with additional packages specifically added to support common functionalities. These include:

UI and Styling

  • go_router: A declarative router based on URL patterns, simplifying navigation logic.

Data Management and Storage

  • collection: Provides additional collection types and utilities.
  • json_path: Allows querying JSON data structures with path expressions.
  • provider: A popular state management technique to propagate changes across the app.
  • shared_preferences: Facilitates persistent storage of simple data (key-value pairs).

Platform Specific Integrations

Utilities

  • intl: Provides internationalization and localization facilities, including message translation, plurals and genders, and date/number formatting.
  • flutter_cache_manager: Manages cached files, supporting custom file retrieval strategies and cache rules.
  • timeago: A library to format dates as a relative time (e.g., "5 minutes ago").

Any elements (e.g. pages, widgets), business logic or packages that are added to the project will be included in the generated code.

Generated Code

FlutterFlow automatically generates a complete Flutter application for you. To dive deeper into the project structure of a Flutter app generated by FlutterFlow, explore the Directory Structure guide.