Interface

IRightIcon

interface IRightIcon {
  /** 是否显示右上角的搜索按钮  0:隐藏 1:显示 */
  show_search_icon?: string;
  /** 是否显示右上角的筛选按钮  0:隐藏 1:显示 */
  show_filter_icon?: string;
  /** 是否显示右上角的分享按钮  0:隐藏 1:显示 */
  show_share_icon?: string;
}

IBgColor

interface IBgColor {
  startColor: string;
  endColor: string;
}

ITitleBarStyle

interface ITitleBarStyle {
  right_icon?: IRightIcon;
  /** 是否显示返回按钮  0:隐藏 1:显示 */
  show_back_icon?: string;
  /** 所有icon是否白色系  0:黑色  1:白色 */
  icon_is_white?: string;
  /** 是否隐藏顶部title栏  0:显示  1:隐藏 */
  hide_title_bar?: string;
  /** V1.2.5版本新增设置顶部电池导航栏背景 */
  status_bar_color?: string;
  /** 背景色 */
  bg_color?: IBgColor;
  /** 是否能滑动返回 1:可以 0:不可以,仅适用Android */
  response_back_click?: string;
  /** 是否能滑动返回 1:可以 0:不可以,仅使用iOS */
  swipe_back?: string;
}

ShareConfig

ISelectItem

IModalBtn

IVibrate

IOrientation

IClientRecord

ISelectAlbum

Last updated