native_camera_sound 0.0.2+1 copy "native_camera_sound: ^0.0.2+1" to clipboard
native_camera_sound: ^0.0.2+1 copied to clipboard

Play Android iOS native camera sound effect.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:native_camera_sound/native_camera_sound.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> 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('Native Camera Sound'),
        ),
        body: Center(
          child: Column(
            children: [
              ElevatedButton(
                onPressed: () {
                  NativeCameraSound.playShutter();
                },
                child: const Text('Play Shutter Sound'),
              ),
              ElevatedButton(
                onPressed: () {
                  NativeCameraSound.playStartRecord();
                },
                child: const Text('Play Start Record Sound'),
              ),
              ElevatedButton(
                onPressed: () {
                  NativeCameraSound.playStopRecord();
                },
                child: const Text('Play Stop Record Sound'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
0
likes
140
pub points
76%
popularity

Publisher

unverified uploader

Play Android iOS native camera sound effect.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on native_camera_sound