├── .gitignore ├── README.md ├── example ├── .flutter-plugins-dependencies ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── flutter │ │ │ │ │ └── plugins │ │ │ │ │ └── GeneratedPluginRegistrant.java │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── isvisoft │ │ │ │ │ ├── example │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── flutter_screen_recording_example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── generated_plugin_registrant.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── flutter_screen_recording ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── flutter │ │ │ └── plugins │ │ │ └── GeneratedPluginRegistrant.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── isvisoft │ │ └── flutter_screen_recording │ │ ├── FlutterScreenRecordingPlugin.kt │ │ └── ForegroundService.kt ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ ├── FlutterScreenRecordingPlugin.h │ │ ├── FlutterScreenRecordingPlugin.m │ │ └── SwiftFlutterScreenRecordingPlugin.swift │ └── flutter_screen_recording.podspec ├── lib │ └── flutter_screen_recording.dart ├── pubspec.lock └── pubspec.yaml ├── flutter_screen_recording_platform_interface ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib │ ├── flutter_screen_recording_platform_interface.dart │ └── method_channel_flutter_screen_recording.dart ├── pubspec.lock └── pubspec.yaml └── flutter_screen_recording_web ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── flutter_screen_recording_web.dart └── interop │ └── get_display_media.dart ├── pubspec.lock ├── pubspec.yaml └── test └── flutter_screen_recording_web_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/README.md -------------------------------------------------------------------------------- /example/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/isvisoft/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/kotlin/com/isvisoft/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/isvisoft/flutter_screen_recording_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/kotlin/com/isvisoft/flutter_screen_recording_example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/lib/generated_plugin_registrant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/lib/generated_plugin_registrant.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /flutter_screen_recording/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/.gitignore -------------------------------------------------------------------------------- /flutter_screen_recording/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/.metadata -------------------------------------------------------------------------------- /flutter_screen_recording/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_screen_recording/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/LICENSE -------------------------------------------------------------------------------- /flutter_screen_recording/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/README.md -------------------------------------------------------------------------------- /flutter_screen_recording/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/.gitignore -------------------------------------------------------------------------------- /flutter_screen_recording/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /flutter_screen_recording/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/build.gradle -------------------------------------------------------------------------------- /flutter_screen_recording/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/gradle.properties -------------------------------------------------------------------------------- /flutter_screen_recording/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /flutter_screen_recording/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'flutter_screen_recording' 2 | -------------------------------------------------------------------------------- /flutter_screen_recording/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_screen_recording/android/src/main/kotlin/com/isvisoft/flutter_screen_recording/FlutterScreenRecordingPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/src/main/kotlin/com/isvisoft/flutter_screen_recording/FlutterScreenRecordingPlugin.kt -------------------------------------------------------------------------------- /flutter_screen_recording/android/src/main/kotlin/com/isvisoft/flutter_screen_recording/ForegroundService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/android/src/main/kotlin/com/isvisoft/flutter_screen_recording/ForegroundService.kt -------------------------------------------------------------------------------- /flutter_screen_recording/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/ios/.gitignore -------------------------------------------------------------------------------- /flutter_screen_recording/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flutter_screen_recording/ios/Classes/FlutterScreenRecordingPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/ios/Classes/FlutterScreenRecordingPlugin.h -------------------------------------------------------------------------------- /flutter_screen_recording/ios/Classes/FlutterScreenRecordingPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/ios/Classes/FlutterScreenRecordingPlugin.m -------------------------------------------------------------------------------- /flutter_screen_recording/ios/Classes/SwiftFlutterScreenRecordingPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/ios/Classes/SwiftFlutterScreenRecordingPlugin.swift -------------------------------------------------------------------------------- /flutter_screen_recording/ios/flutter_screen_recording.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/ios/flutter_screen_recording.podspec -------------------------------------------------------------------------------- /flutter_screen_recording/lib/flutter_screen_recording.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/lib/flutter_screen_recording.dart -------------------------------------------------------------------------------- /flutter_screen_recording/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/pubspec.lock -------------------------------------------------------------------------------- /flutter_screen_recording/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording/pubspec.yaml -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/.gitignore -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/.metadata -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/LICENSE -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/README.md -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/lib/flutter_screen_recording_platform_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/lib/flutter_screen_recording_platform_interface.dart -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/lib/method_channel_flutter_screen_recording.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/lib/method_channel_flutter_screen_recording.dart -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/pubspec.lock -------------------------------------------------------------------------------- /flutter_screen_recording_platform_interface/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_platform_interface/pubspec.yaml -------------------------------------------------------------------------------- /flutter_screen_recording_web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/.gitignore -------------------------------------------------------------------------------- /flutter_screen_recording_web/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/.metadata -------------------------------------------------------------------------------- /flutter_screen_recording_web/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_screen_recording_web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/LICENSE -------------------------------------------------------------------------------- /flutter_screen_recording_web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/README.md -------------------------------------------------------------------------------- /flutter_screen_recording_web/lib/flutter_screen_recording_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/lib/flutter_screen_recording_web.dart -------------------------------------------------------------------------------- /flutter_screen_recording_web/lib/interop/get_display_media.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/lib/interop/get_display_media.dart -------------------------------------------------------------------------------- /flutter_screen_recording_web/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/pubspec.lock -------------------------------------------------------------------------------- /flutter_screen_recording_web/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/pubspec.yaml -------------------------------------------------------------------------------- /flutter_screen_recording_web/test/flutter_screen_recording_web_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isvisoft/flutter_screen_recording/HEAD/flutter_screen_recording_web/test/flutter_screen_recording_web_test.dart --------------------------------------------------------------------------------