diff --git a/.changeset/tame-flies-clean.md b/.changeset/tame-flies-clean.md new file mode 100644 index 000000000..21da87875 --- /dev/null +++ b/.changeset/tame-flies-clean.md @@ -0,0 +1,5 @@ +--- +"@stackflow/plugin-basic-ui": patch +--- + +Add interface to inject appBar.minHeight diff --git a/extensions/plugin-basic-ui/src/basicUIPlugin.tsx b/extensions/plugin-basic-ui/src/basicUIPlugin.tsx index 7a7277ca0..7ff93521f 100644 --- a/extensions/plugin-basic-ui/src/basicUIPlugin.tsx +++ b/extensions/plugin-basic-ui/src/basicUIPlugin.tsx @@ -81,6 +81,7 @@ export const basicUIPlugin: ( [css.globalVars.appBar.borderColor]: _options.appBar?.borderColor, [css.globalVars.appBar.borderSize]: _options.appBar?.borderSize, [css.globalVars.appBar.height]: _options.appBar?.height, + [css.globalVars.appBar.minHeight]: _options.appBar?.minHeight, [css.globalVars.appBar.iconColor]: _options.appBar?.iconColor, [css.globalVars.appBar.textColor]: _options.appBar?.textColor, [css.globalVars.appBar.minSafeAreaInsetTop]: @@ -95,7 +96,7 @@ export const basicUIPlugin: ( [css.globalVars.appBar.hitSlop]: _options.appBar?.hitSlop, [css.globalVars.appBar.itemGap]: _options.appBar?.itemGap, [css.globalVars.edge.width]: _options.edge?.width, - }) + }), )} > {stack.render()}