screenshot_ntv 1.0.2 copy "screenshot_ntv: ^1.0.2" to clipboard
screenshot_ntv: ^1.0.2 copied to clipboard

A Flutter plugin to take(support Platform Views) for Android and iOS with native code.

example/lib/main.dart

// ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

import 'package:screenshot_ntv/screenshot_ntv.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Screenshot_ntv Demo',
      home: Home(),
    );
  }
}

class Home extends StatefulWidget {
  const Home({super.key});

  @override
  State<StatefulWidget> createState() => _HomeState();
}

class _HomeState extends State<Home> {
  final images = <Uint8List>[];

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Plugin example app'),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: () async {
          final result = await ScreenshotNtv.takeScreenshot();
          if (result != null) {
            images.add(result);
            setState(() {});
          }
        },
        child: const Icon(
          Icons.screenshot,
        ),
      ),
      body: images.isEmpty
          ? const Center(child: Text("not screenshot"))
          : SingleChildScrollView(
              padding: const EdgeInsets.all(10),
              child: Center(
                child: Wrap(
                  spacing: 10,
                  runSpacing: 10,
                  children: List.generate(
                    images.length,
                    (index) => GestureDetector(
                      onTap: () {
                        showDialog(
                          context: context,
                          builder: (_) => ScreenshotView(
                            data: images[index],
                          ),
                        );
                      },
                      child: Container(
                        decoration: BoxDecoration(
                          boxShadow: [
                            BoxShadow(
                                blurRadius: 15,
                                color: Colors.black.withOpacity(0.15))
                          ],
                        ),
                        child: Image.memory(
                          images[index],
                          height: 250,
                        ),
                      ),
                    ),
                  ),
                ),
              ),
            ),
    );
  }
}

class ScreenshotView extends StatelessWidget {
  const ScreenshotView({
    super.key,
    required this.data,
  });

  final Uint8List data;

  @override
  Widget build(BuildContext context) {
    return GestureDetector(
      onTap: () {
        Navigator.pop(context);
      },
      child: Container(
        margin: const EdgeInsets.all(20),
        child: Image.memory(data),
      ),
    );
  }
}
4
likes
150
points
120
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin to take(support Platform Views) for Android and iOS with native code.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on screenshot_ntv