nsfw_detector_flutter 1.0.1 copy "nsfw_detector_flutter: ^1.0.1" to clipboard
nsfw_detector_flutter: ^1.0.1 copied to clipboard

A Flutter package for detecting NSFW (Not Safe For Work) content in images using TensorFlow Lite. Easily integrate NSFW detection capabilities into your Flutter applications.

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('NSFW Detector Example'),
        ),
      ),
    );
  }
}
14
likes
0
points
452
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for detecting NSFW (Not Safe For Work) content in images using TensorFlow Lite. Easily integrate NSFW detection capabilities into your Flutter applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, image, tflite_flutter

More

Packages that depend on nsfw_detector_flutter