Skip to content

Commit

Permalink
fix doc render error
Browse files Browse the repository at this point in the history
  • Loading branch information
violinday committed Sep 12, 2023
1 parent 80261f3 commit 13f7e63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const BrnSingleSelectDialog(
| title | String | 弹窗标题名称 || "" |
| messageText | String? | 描述文案,优先级较 messageWidget 低,优先使用 messageWidget || |
| messageWidget | Widget? | 描述 Widget || |
| conditions | List<String> | 备选项数组 || |
| conditions | `List<String>` | 备选项数组 || |
| checkedItem | String | 选中的选项名称 || |
| submitText | String? | 确定/提交 按钮文案 || 默认值为国际化配置文本 '提交' |
| submitBgColor | Color | 提交按钮背景颜色 || |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ BrnMultiDataPickerWidget(
| titleTextStyle | TextStyle? | 标题样式 || |
| confirmTextStyle | TextStyle? | 确认文案样式 || |
| cancelTextStyle | TextStyle? | 取消文案样式 || |
| pickerTitles | List<String>? | 多级数据选择每一级的默认标题 |||
| pickerTitles | `List<String>?` | 多级数据选择每一级的默认标题 |||
| pickerTitleFontSize | double? | 多级数据选择每一级默认标题的字体大小 || 16 |
| pickerTitleColor | Color? | 多级数据选择每一级默认标题的文案颜色 || Color(0XFF4A4E59) |
| textFontSize | double? | 多级数据选择数据字体大小 || 18 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ BrnSelectionView(

| **参数名** | **参数类型** | **作用** | **是否必填** | **默认值** |
| -------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------ | ---------- |
| originalSelectionData | List<**BrnSelectionEntity**> | 筛选所需数据用于展示筛选菜单栏,以及展开的筛选弹窗。 |||
| originalSelectionData | `List<**BrnSelectionEntity**>` | 筛选所需数据用于展示筛选菜单栏,以及展开的筛选弹窗。 |||
| selectionViewController | BrnSelectionViewController? | 用于主动控制筛选弹窗的关闭和刷新菜单的内容状态 || |
| onSelectionChanged | `void Function(int menuIndex, Map<String, String> selectedParams, Map<String, String> customParams, BrnSetCustomSelectionMenuTitle setCustomMenuTitle)` | 点击筛选弹窗中的【确认】按钮时回调给外部选中的参数,包括:<br />menuIndex:当前展开的 menu 位置;<br />selectedParams 所有筛选弹窗中选中的参数;<br />customParams:拦截 CustomHandle 类型的筛选并设置的自定义参数;setCustomMenuTitle:对当前的筛选 Menu 设置 title 和高亮的回调函数,一般与 customParams 、**onCustomSelectionMenuClick**搭配使用,例如,通过 onCustomSelectionMenuClick 回调返回 customParams 参数,setCustomMenuTitle 根据 customParams 参数判断是否高亮,是否需要根据参数更新筛选菜单的 Title。 || |
| configRowCount | `BrnConfigTagCountPerRow(int index, BrnSelectionEntity entity)?` | 仅适用于类型为 SelectionWindowType.Range 的筛选弹窗,用于对 SelectionWindowType.Range 类型的列数做配置,回调参数为 menu 的所在位置 index 和 menu 的数据。 |||
Expand Down

0 comments on commit 13f7e63

Please sign in to comment.