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(),
    );
  }
}
copied to clipboard
21
likes
150
points
3.6k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.13 - 2025.03.28

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

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on camera_macos