windows_ime_manager 1.0.3 copy "windows_ime_manager: ^1.0.3" to clipboard
windows_ime_manager: ^1.0.3 copied to clipboard

PlatformWindows

A Flutter plugin for managing Input Method Editors (IME) on Windows, supporting seamless switching between different languages.

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:windows_ime_manager/windows_ime_manager.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final _windowsImeManagerPlugin = WindowsImeManager();

  @override
  void initState() {
    super.initState();
    setLanguageIme(LanguageIme.japaneseHalfWidthAlphanumericIme);
  }

  Future<void> setLanguageIme(LanguageIme languageIme) async {
    try {
      await _windowsImeManagerPlugin.setLanguageIme(languageIme);
    } on PlatformException {
      debugPrint('Failed to set language IME.');
    }
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Windows IME Manager Example'),
        ),
        body: Center(
          child: Container(
            constraints: const BoxConstraints(maxWidth: 500),
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: <Widget>[
                Focus(
                  onFocusChange: (hasFocus) {
                    if (hasFocus) {
                      setLanguageIme(LanguageIme.englishIme);
                    }
                  },
                  child: const TextField(
                    decoration: InputDecoration(
                      labelText: 'English IME',
                      border: OutlineInputBorder(),
                    ),
                  ),
                ),
                const SizedBox(height: 20),
                Focus(
                  onFocusChange: (hasFocus) {
                    if (hasFocus) {
                      setLanguageIme(LanguageIme.japaneseHalfWidthKatakanaIme);
                    }
                  },
                  child: const TextField(
                    decoration: InputDecoration(
                      labelText: 'Japanese Half-Width Katakana IME',
                      border: OutlineInputBorder(),
                    ),
                  ),
                ),
                const SizedBox(height: 20),
                Focus(
                  onFocusChange: (hasFocus) {
                    if (hasFocus) {
                      setLanguageIme(LanguageIme.japaneseHiraganaIme);
                    }
                  },
                  child: const TextField(
                    decoration: InputDecoration(
                      labelText: 'Japanese Hiragana IME',
                      border: OutlineInputBorder(),
                    ),
                  ),
                ),
                const SizedBox(height: 40),
                ElevatedButton(
                  onPressed: () {},
                  child: const Text('Submit'),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
2
likes
160
pub points
44%
popularity

Publisher

verified publisherayimenlatheef.online

A Flutter plugin for managing Input Method Editors (IME) on Windows, supporting seamless switching between different languages.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on windows_ime_manager