audio_input_type_plugin 0.0.5 copy "audio_input_type_plugin: ^0.0.5" to clipboard
audio_input_type_plugin: ^0.0.5 copied to clipboard

Microphone Type Checker is a cross-platform Flutter plugin that enables developers to determine the type of microphone available on both iOS and Android devices. By leveraging native APIs, the plugin [...]

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:audio_input_type_plugin/audio_input_type_plugin.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
  void initState() {
    super.initState();
  }


  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: AudioInputTypeView(),
    );
  }
}
2
likes
130
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

Microphone Type Checker is a cross-platform Flutter plugin that enables developers to determine the type of microphone available on both iOS and Android devices. By leveraging native APIs, the plugin retrieves and identifies the microphone type, such as built-in, external, or headset microphones. This functionality is essential for apps that need to customize audio input behavior based on the specific microphone in use, providing a seamless experience across both mobile platforms.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on audio_input_type_plugin

Packages that implement audio_input_type_plugin