DualButtonScreenshotWrapper constructor

const DualButtonScreenshotWrapper({
  1. Key? key,
  2. required Widget child,
  3. bool mostrarBotoes = true,
  4. AlignmentGeometry posicaoBotoes = Alignment.bottomRight,
  5. Color? corCapturarBotao,
  6. Color? corEnviarBotao,
  7. ShareMode shareMode = ShareMode.telegram,
})

Creates a screenshot wrapper with capture and share buttons

Implementation

const DualButtonScreenshotWrapper({
  Key? key,
  required this.child,
  this.mostrarBotoes = true,
  this.posicaoBotoes = Alignment.bottomRight,
  this.corCapturarBotao,
  this.corEnviarBotao,
  this.shareMode = ShareMode.telegram,
}) : super(key: key);