vais_speech 1.0.7 copy "vais_speech: ^1.0.7" to clipboard
vais_speech: ^1.0.7 copied to clipboard

outdated

A new Flutter plugin.

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:toast/toast.dart';
import 'package:vais_speech/model/lyric/lyric.dart';
import 'package:vais_speech/vais_speech.dart';
import 'package:vais_speech_example/record.dart';

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

class MyApp extends StatefulWidget {

  const MyApp({Key key, }) : super(key: key);

  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  final navigationKey = GlobalKey<NavigatorState>();

  @override
  Widget build(BuildContext context) {
    final mContext = context;
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Voice Recognition',
      navigatorKey: navigationKey,
      initialRoute: 'record',
      routes: {
        'record': (_) => RecordScreen(),


      },
    );
  }
}
4
likes
0
pub points
15%
popularity

Publisher

unverified uploader

A new Flutter plugin.

Homepage

License

unknown (LICENSE)

Dependencies

byte_array, file, fixnum, flutter, grpc, http, json_annotation, path, protobuf, wakelock, xml

More

Packages that depend on vais_speech