小程序能否支持设置键盘的keyboardAppearance
发布于 5 年前 作者 gang50 13778 次浏览 来自 问答

目前小程序里的键盘只能是默认的白色背景,但是有些小程序的主题色是深色,配上白色的键盘,不是很协调。

因此官方能否支持设置键盘的keyboardAppearance,比如像苹果这样的设置:

typedef NS_ENUM(NSInteger, UIKeyboardAppearance) {

    UIKeyboardAppearanceDefault,          // Default apperance for the current input method.

    UIKeyboardAppearanceDark NS_ENUM_AVAILABLE_IOS(7_0),

    UIKeyboardAppearanceLight NS_ENUM_AVAILABLE_IOS(7_0),

    UIKeyboardAppearanceAlert = UIKeyboardAppearanceDark// Deprecated

};

谢谢!

回到顶部