ScreenshotWrapper constructor

const ScreenshotWrapper({
  1. Key? key,
  2. required Widget child,
  3. bool mostrarBotao = true,
  4. AlignmentGeometry posicaoBotao = Alignment.bottomRight,
  5. Color? corBotao,
  6. ShareMode shareMode = ShareMode.telegram,
})

Creates a screenshot wrapper with a single capture button

Implementation

const ScreenshotWrapper({
  super.key,
  required this.child,
  this.mostrarBotao = true,
  this.posicaoBotao = Alignment.bottomRight,
  this.corBotao,
  this.shareMode = ShareMode.telegram,
});