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

retracted

Official Flutter SDK for Voyant APIs - NSFW image detection, text analysis, and email services with secure HMAC authentication.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'text_page.dart';
import 'nsfw_page.dart';
import 'email_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(home: Home());
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text("Voyant SDK Demo")),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            ElevatedButton(
              child: const Text("Text API"),
              onPressed: () => Navigator.push(
                context,
                MaterialPageRoute(builder: (_) => const TextPage()),
              ),
            ),
            const SizedBox(height: 12),
            ElevatedButton(
              child: const Text("NSFW API"),
              onPressed: () => Navigator.push(
                context,
                MaterialPageRoute(builder: (_) => const NsfwPage()),
              ),
            ),
            const SizedBox(height: 12),
            ElevatedButton(
              child: const Text("Email API"),
              onPressed: () => Navigator.push(
                context,
                MaterialPageRoute(builder: (_) => const EmailPage()),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
1
likes
0
points
390
downloads

Publisher

verified publishervoyantnetworks.com

Weekly Downloads

Official Flutter SDK for Voyant APIs - NSFW image detection, text analysis, and email services with secure HMAC authentication.

Homepage
Repository (GitHub)
View/report issues

Topics

#ai #text-analysis #nsfw #content-moderation #sdk

License

unknown (license)

Dependencies

crypto, flutter, http, image_compression_flutter

More

Packages that depend on voyant_apis