ali_ai_call 1.0.3 copy "ali_ai_call: ^1.0.3" to clipboard
ali_ai_call: ^1.0.3 copied to clipboard

阿里云智能对话插件的Flutter实现,支持iOS和Android平台。提供语音通话、ASR、TTS等功能。

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/config_screen.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'AI Agent Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        inputDecorationTheme: const InputDecorationTheme(
          border: OutlineInputBorder(),
          contentPadding: EdgeInsets.symmetric(horizontal: 16, vertical: 16),
        ),
      ),
      home: const ConfigScreen(),
    );
  }
}
1
likes
145
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

阿里云智能对话插件的Flutter实现,支持iOS和Android平台。提供语音通话、ASR、TTS等功能。

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, http, plugin_platform_interface

More

Packages that depend on ali_ai_call

Packages that implement ali_ai_call