keyboard_detection 0.0.1+1 copy "keyboard_detection: ^0.0.1+1" to clipboard
keyboard_detection: ^0.0.1+1 copied to clipboard

outdated

This plugin gives you an easy way to detect if the keyboard is visible or not.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:keyboard_detection/keyboard_detection.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  bool isKeyboardOpened = false;
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: KeyboardDetection(
        timerDuration: const Duration(milliseconds: 10),
        onChanged: (value) {
          print('Is Keyboard Opened: $value');
          setState(() {
            isKeyboardOpened = value;
          });
        },
        child: Scaffold(
          appBar: AppBar(
            title: const Text('Keyboard Detection'),
          ),
          body: Center(
            child: Text('Is Keyboard Opened: $isKeyboardOpened'),
          ),
        ),
      ),
    );
  }
}
20
likes
0
pub points
91%
popularity

Publisher

verified publisherlamnhan.dev

This plugin gives you an easy way to detect if the keyboard is visible or not.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on keyboard_detection