#!/bin/bash cd "$(dirname "$0")" # Enable Linux and Web builds flutter config --enable-linux-desktop flutter config --enable-web # Create project structure (this will add platform-specific files) flutter create . # Get dependencies flutter pub get # Build Linux version flutter build linux --release # Build Web version flutter build web --release