Files
smooth-app/packages/smooth_app/lib/helpers/keyboard_helper.dart
2024-07-20 09:46:53 +02:00

6 lines
169 B
Dart

import 'package:flutter/widgets.dart';
extension KeyboardContextExtention on BuildContext {
bool get keyboardVisible => MediaQuery.viewInsetsOf(this).bottom > 0.0;
}