Last updated:
0 purchases
keyboard area handler
keyboard_area_handler #
Lightweight keyboard area override widgets fixer.
Table Of Contents #
keyboard_area_handler
Table Of Contents
Features
Getting started
Usage
Features #
KeyboardAreaHandler(): Fixes keyboard override widgets
Getting started #
To start, import package
import 'package:keyboard_area_handler/keyboard_area_handler.dart';
copied to clipboard
Usage #
Just as easy as this
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(
const MaterialApp(
home: KeyboardAreaHandler(
child: Scaffold(
body: Center(
child: Text('Hello, World!'),
),
),
),
),
);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.