You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EchoEllet opened this issue
Mar 23, 2025
· 1 comment
· Fixed by #2522
Assignees
Labels
bugSomething isn't workingiOSIssues or feature requests specific to the iOS platform.minorMinimal impact or cosmetic issue. Can be resolved at a later time without affecting overall function
If on the simulator, make sure to show the soft keyboard instead of using the hardware keyboard of macOS. Use the Command + K keyboard shortcut or go to I/O > Keybaord > Toggle software keyboard when focusing on the iOS simulator window.
The keyboard appearance is light instead of dark, it's always light (the default is hardcoded).
Expected results
To respect the system's brightness by default.
Actual results
Doesn't respect the system's brightness. However QuillRawEditor worked as expected (
/// Defaults to Material/Cupertino App Brightness.
///
/// The keyboardd appearance will set using the following:
///
/// ```dart
/// widget.configurations.keyboardAppearance ??
/// CupertinoTheme.maybeBrightnessOf(context) ??
/// Theme.of(context).brightness
/// ```
///
/// See also: https://github.com/flutter/flutter/blob/06b9f7ba0bef2b5b44a643c73f4295a096de1202/packages/flutter/lib/src/services/text_input.dart#L621-L626
finalBrightness? keyboardAppearance;
and
The text was updated successfully, but these errors were encountered:
EchoEllet
added
bug
Something isn't working
iOS
Issues or feature requests specific to the iOS platform.
minor
Minimal impact or cosmetic issue. Can be resolved at a later time without affecting overall function
labels
Mar 23, 2025
bugSomething isn't workingiOSIssues or feature requests specific to the iOS platform.minorMinimal impact or cosmetic issue. Can be resolved at a later time without affecting overall function
Have you checked for an existing issue?
Flutter Quill Version
11.1.1
Steps to Reproduce
Command + K
keyboard shortcut or go to I/O > Keybaord > Toggle software keyboard when focusing on the iOS simulator window.Expected results
To respect the system's brightness by default.
Actual results
Doesn't respect the system's brightness. However
QuillRawEditor
worked as expected (flutter-quill/lib/src/editor/raw_editor/config/raw_editor_config.dart
Line 55 in c0e624a
Additional Context
Screenshots / Video demonstration
For reference, see:
flutter-quill/lib/src/editor/raw_editor/config/raw_editor_config.dart
Lines 312 to 327 in c0e624a
The text was updated successfully, but these errors were encountered: