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

A Flutter package to detect NSFW content in images.

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'),
        ),
      ),
    );
  }
}
6
likes
0
points
185
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package to detect NSFW content in images.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, image, tflite_flutter

More

Packages that depend on nsfw_detector_flutter