camera_macos 0.0.9 copy "camera_macos: ^0.0.9" to clipboard
camera_macos: ^0.0.9 copied to clipboard

PlatformmacOS

macOS camera package implementation. Supports both internal and external cameras, can take pictures and record video with audio as well.

example/lib/main.dart

import 'package:camera_macos_example/main_container_widget.dart';
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      localizationsDelegates: [
        GlobalMaterialLocalizations.delegate,
      ],
      home: MainContainerWidget(),
    );
  }
}
21
likes
150
pub points
89%
popularity

Publisher

unverified uploader

macOS camera package implementation. Supports both internal and external cameras, can take pictures and record video with audio as well.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on camera_macos