A text to speech plugin for flutter. Initial implementation, more to come. :)
To use this plugin, add tts
as a dependency in your pubspec.yaml file.
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
void main() {
runApp(new Scaffold(
body: new Center(
child: new RaisedButton(
onPressed: speak,
child: new Text('Say Hello'),
),
),
));
}
speak() async {
Tts.speak('Hello World');
}
You can get a list of available languages (voices) supported by the OS by calling:
final languages = await Tts.getAvailableLanguages();
Checking to see if a languge can be used:
var isGoodLanguage = await Tts.isLanguageAvailable(lang);
Setting a deisred language:
var setLanguage = await Tts.setLanguage(lang);
example/README.md
Demonstrates how to use the tts plugin.
For help getting started with Flutter, view our online documentation.
Add this to your package's pubspec.yaml file:
dependencies:
tts: ^1.0.2
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter packages get
Alternatively, your editor might support pub get
or flutter packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:tts/tts.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
1.0.2 | Nov 7, 2018 |
|
|
1.0.1 | Feb 6, 2018 |
|
|
1.0.0 | Feb 6, 2018 |
|
|
0.0.2 | Feb 4, 2018 |
|
|
0.0.1 | Feb 4, 2018 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
85
|
Health:
Code health derived from static analysis.
[more]
|
--
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
--
|
Overall:
Weighted score of the above.
[more]
|
43
|
The package version is not analyzed, because it does not support Dart 2. Until this is resolved, the package will receive a health and maintenance score of 0.
Support Dart 2 in pubspec.yaml
.
The SDK constraint in pubspec.yaml
doesn't allow the Dart 2.0.0 release. For information about upgrading it to be Dart 2 compatible, please see https://www.dartlang.org/dart-2#migration.
Make sure dartdoc
successfully runs on your package's source files. (-10 points)
Dependencies were not resolved.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0 <=3.0.0 |