zcode_embed_ime_db 0.0.3 copy "zcode_embed_ime_db: ^0.0.3" to clipboard
zcode_embed_ime_db: ^0.0.3 copied to clipboard

Zcode 52 standard Mongol embed IME. Soft/Hard layout, word database, words suggestion and next word suggestion.

example/README.md

void main() {
  runApp(const DemoApp());
  initZcodeDB();
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Zcode Embed IME Demo',
      theme: ThemeData(fontFamily: 'ZcodeQagan'),
      home: Scaffold(
        appBar: AppBar(title: const Text('Zcode Embed IME Demo')),
        body: Column(children: [
          const Expanded(child: TextField()),
          EmbedKeyboard(
            layoutBuilders: [
              (i) => ZcodeLayout(i, converter: DBZcodeLayoutConverter()),
              EnglishLayout.create,
            ],
          ),
        ]),
      ),
    );
  }
}
0
likes
150
pub points
0%
popularity

Publisher

verified publishersatsrag.dev

Zcode 52 standard Mongol embed IME. Soft/Hard layout, word database, words suggestion and next word suggestion.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, path, path_provider, sqlite3, sqlite3_flutter_libs, zcode_embed_ime

More

Packages that depend on zcode_embed_ime_db