# screen_capturer **Repository Path**: swiftlyfish/screen_capturer ## Basic Information - **Project Name**: screen_capturer - **Description**: No description available - **Primary Language**: Dart - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-08 - **Last Updated**: 2021-12-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # screen_capturer [![pub version][pub-image]][pub-url] [pub-image]: https://img.shields.io/pub/v/screen_capturer.svg [pub-url]: https://pub.dev/packages/screen_capturer This plugin allows Flutter **desktop** apps to capture screenshots. [![Discord](https://img.shields.io/badge/discord-%237289DA.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/zPa6EZ2jqbqb) --- - [screen_capturer](#screen_capturer) - [Platform Support](#platform-support) - [Quick Start](#quick-start) - [Installation](#installation) - [Usage](#usage) - [License](#license) ## Platform Support | MacOS | Linux | Windows | | :---: | :---: | :-----: | | ✔️ | ✔️ | ✔️ | > ⚠️ macOS only supports non-sandbox mode. ## Quick Start ### Installation Add this to your package's pubspec.yaml file: ```yaml dependencies: screen_capturer: ^0.1.0 ``` Or ```yaml dependencies: screen_capturer: git: url: https://github.com/leanflutter/screen_capturer.git ref: main ``` ### Usage ```dart import 'package:screen_capturer/screen_capturer.dart'; CapturedData? capturedData = await ScreenCapturer.instance.capture( imagePath: '', ); ``` > Please see the example app of this plugin for a full example. ## License [MIT](./LICENSE)