android_media 0.0.1 copy "android_media: ^0.0.1" to clipboard
android_media: ^0.0.1 copied to clipboard

PlatformAndroid

Provides Android classes that manage various media interfaces in audio and video.

example/lib/main.dart

import 'package:flutter/material.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
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Hello, World!'),
        ),
      ),
    );
  }
}
0
likes
150
pub points
7%
popularity

Publisher

unverified uploader

Provides Android classes that manage various media interfaces in audio and video.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

android_hardware, flutter, reference

More

Packages that depend on android_media