camera_connect 0.0.2 copy "camera_connect: ^0.0.2" to clipboard
camera_connect: ^0.0.2 copied to clipboard

A Flutter plugin for connecting to IP cameras with TUTK IOTC support.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:camera_connect/camera_connect.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: CameraConnect(
          uuid: 'H23R9K94ZULVDVCF111A',
          pass: 'INcFwR',
          height: 700,
          width: 1000,
        ),
      ),
    );
  }
}
3
likes
0
points
22
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for connecting to IP cameras with TUTK IOTC support.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on camera_connect

Packages that implement camera_connect