flutter_language_detection可以识别多达 75 种不同的语言

3 min read

pubspec.yaml文件中添加依赖项:

dependencies:
  flutter_language_detection: ^1.0.0
flutter pub get
import 'package:flutter_language_detection/flutter_language_detection.dart';
void main() async {
  final languageDetector = LanguageDetector();
  final detectedLanguage = await languageDetector.detectLanguage('your text here');
  print('Detected language: ${detectedLanguage.language}');
}