Skip to main content

QR Code Configuration

Flutter Release X can generate QR codes for quick sharing. The QR codes can be customized with various settings.

SettingDescription
enabledEnable or disable QR code generation. (true/false)
save_fileFlag to save the QR code image. (true/false)
show_in_commandDisplay the QR code in the command line output. (true/false)
sizeQR code image size (e.g., 256).
error_correction_levelError correction level (low, medium, quartile, high).
save_pathFile path to save the QR code image.

example

# QR Code generation settings in your yaml config file
qr_code:
enabled: true # Whether to generate QR codes (true/false)
save_file: true # Save the QR code image to the file system (true/false)
show_in_command: true # Display QR code in the command line output (true/false)
size: 256 # Size of the generated QR code (pixels)
error_correction_level: low # Error correction level: low, medium, quartile, high
save_path: "./release-qr-code.png" # File path to save the QR code image

follow Configurtation for more details.