Docker image and scripts for flutter/rust/android development in vscode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
353 B

#!/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