phonetic_typing 0.0.7 copy "phonetic_typing: ^0.0.7" to clipboard
phonetic_typing: ^0.0.7 copied to clipboard

Enable phonetic hindi typing with regular english keyboard on desktop and on phones.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'HomePage.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(routes: {
      "/": (context) => HomePage(),
      "/homePage1": (context) => HomePage(),
      // "/txtFieldPage":(context)=>TxtFieldSugges(),
    });
  }
}
3
likes
120
pub points
28%
popularity

Publisher

unverified uploader

Enable phonetic hindi typing with regular english keyboard on desktop and on phones.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on phonetic_typing