suppress_soft_keyboard_focus_node 0.0.1 copy "suppress_soft_keyboard_focus_node: ^0.0.1" to clipboard
suppress_soft_keyboard_focus_node: ^0.0.1 copied to clipboard

PlatformAndroid

A Flutter plugin that prevents the soft keyboard from appearing when a widget gains focus.

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(child: Text('Running on: ')),
      ),
    );
  }
}
0
likes
160
points
106
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that prevents the soft keyboard from appearing when a widget gains focus.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on suppress_soft_keyboard_focus_node

Packages that implement suppress_soft_keyboard_focus_node