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

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('English', '');
  }

  Future<void> setLanguageIme(String language, String type) async {
    try {
      await _windowsImeManagerPlugin.setLanguageIme(language, type);
    } 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('English', '');
                    }
                  },
                  child: const TextField(
                    decoration: InputDecoration(
                      labelText: 'English IME',
                      border: OutlineInputBorder(),
                    ),
                  ),
                ),
                const SizedBox(height: 20),
                Focus(
                  onFocusChange: (hasFocus) {
                    if (hasFocus) {
                      setLanguageIme('Japanese', 'japaneseHalfWidthKatakanaIme');
                    }
                  },
                  child: const TextField(
                    decoration: InputDecoration(
                      labelText: 'Japanese Half-Width Katakana IME',
                      border: OutlineInputBorder(),
                    ),
                  ),
                ),
                const SizedBox(height: 20),
                Focus(
                  onFocusChange: (hasFocus) {
                    if (hasFocus) {
                      setLanguageIme('Japanese', 'japaneseHiraganaIme');
                    }
                  },
                  child: const TextField(
                    decoration: InputDecoration(
                      labelText: 'Japanese Hiragana IME',
                      border: OutlineInputBorder(),
                    ),
                  ),
                ),
                const SizedBox(height: 40),
                ElevatedButton(
                  onPressed: () {},
                  child: const Text('Submit'),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
2
likes
0
pub points
55%
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

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on windows_ime_manager