audio_chat 1.0.0+1 copy "audio_chat: ^1.0.0+1" to clipboard
audio_chat: ^1.0.0+1 copied to clipboard

audio_chat is a powerful and easy-to-use Flutter package designed to streamline the integration of real-time audio chat functionality into your Flutter applications. With audio_chat, you can effortles [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:audio_chat/audio_chat.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  List<String> audios = [];

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text("Audio Chat"),
        ),
        body: Column(
          children: [
            Expanded(
              child: ListView.builder(
                padding: const EdgeInsets.all(8),
                itemCount: audios.length,
                itemBuilder: (context, index) {
                  return AudioBubble(filepath: audios[index]);
                },
              ),
            ),
            Padding(
              padding: const EdgeInsets.all(8.0),
              child: Row(
                children: [
                  Expanded(
                    child: Container(
                      decoration: const ShapeDecoration(
                        shape: StadiumBorder(
                            side: BorderSide(color: Colors.grey, width: 0.8)),
                        color: Colors.white,
                      ),
                      child: const TextField(
                        decoration: InputDecoration(
                            prefixIcon: Icon(Icons.emoji_emotions),
                            border: InputBorder.none,
                            hintText: 'Message'),
                      ),
                    ),
                  ),
                  const SizedBox(width: 8),
                  RecordButton(
                    onAudioRecorded: (path) {
                      if (path != null) {
                        audios.add(path);
                        setState(() {});
                      }
                    },
                    showLockSlider: true,
                    showCancelSlider: true,
                  ),
                ],
              ),
            ),
          ],
        ),
      ),
    );
  }
}
4
likes
120
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

audio_chat is a powerful and easy-to-use Flutter package designed to streamline the integration of real-time audio chat functionality into your Flutter applications. With audio_chat, you can effortlessly add voice communication features to your app, enhancing user interaction and engagement.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, font_awesome_flutter, just_audio, lottie, path_provider, permission_handler, plugin_platform_interface, record, shimmer, vibration, web

More

Packages that depend on audio_chat