QR Code Configuration
Flutter Release X can generate QR codes for quick sharing. The QR codes can be customized with various settings.
| Setting | Description | 
|---|---|
enabled | Enable or disable QR code generation. (true/false) | 
save_file | Flag to save the QR code image. (true/false) | 
show_in_command | Display the QR code in the command line output. (true/false) | 
size | QR code image size (e.g., 256). | 
error_correction_level | Error correction level (low, medium, quartile, high). | 
save_path | File 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.