menk_embed_ime 0.0.6
menk_embed_ime: ^0.0.6 copied to clipboard
Menksoft's old standard Mongol embed IME. Soft/Hard layout and Suggestion words.
void main() {
runApp(const DemoApp());
db.init();
}
class DemoApp extends StatelessWidget {
const DemoApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Menk Embed IME Demo',
theme: ThemeData(fontFamily: 'MenkQagan'),
home: Scaffold(
appBar: AppBar(title: const Text('Menk Embed IME Demo')),
body: Column(children: [
const Expanded(child: TextField()),
EmbedKeyboard(
layoutBuilders: const [
MenkLayout.create,
EnglishLayout.create,
],
),
]),
),
);
}
}