> For the complete documentation index, see [llms.txt](https://indocodes.gitbook.io/icodes-flutter/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://indocodes.gitbook.io/icodes-flutter/production-build.md).

# Production Build

## iOS

{% embed url="<https://flutter.dev/docs/deployment/ios>" %}

## Android

{% embed url="<https://flutter.dev/docs/deployment/android>" %}

## Web

{% embed url="<https://flutter.dev/docs/deployment/web>" %}

```bash
flutter build web --web-renderer html --release
```

## Mac OS

{% embed url="<https://flutter.dev/docs/deployment/macos>" %}

```bash
flutter config --enable-macos-desktop
```

Go to project directory then run

```bash
flutter create . --platform macos
```

## Windows

{% embed url="<https://flutter.dev/docs/get-started/install/windows>" %}

For Windows 32 desktop support

```bash
flutter config --enable-windows-desktop
```

For UWP desktop support

```bash
flutter config --enable-windows-uwp-desktop
```

Go to project directory then run

```bash
flutter create . --platform windows
```

## Linux

{% embed url="<https://flutter.dev/docs/deployment/linux>" %}

```bash
flutter config --enable-linux-desktop
```

Go to project directory then run

```bash
flutter create . --platform linux
```
