This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This repository is a monorepo containing multiple Flutter projects. Each sub-directory is a self-contained Flutter application.
- com_test_flutter_app: A basic Flutter project.
- com_test_flutter_shop: A Flutter project that uses
providerandriverpodfor state management. - com_test_flutter_transaction: A Flutter project that uses the
intlpackage for internationalization. - flutter_complete_guide: A basic Flutter project.
To work on any of the sub-projects, first change into the project's directory. For example, to work on com_test_flutter_shop:
cd com_test_flutter_shopHere are some common commands you can run from within a sub-project's directory:
flutter pub getflutter runflutter testTo build an Android App Bundle:
flutter build appbundleTo build an iOS app:
flutter build ios