File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ handling the calculation for position and size of other components.
99local Layout = require (" nui.layout" )
1010local Popup = require (" nui.popup" )
1111
12- local top_popup = Popup ({ border = " single" })
13- local bottom_popup = Popup ({ border = " double" })
12+ local top_popup = Popup ({ border = " double" })
13+ local bottom_left_popup = Popup ({ border = " single" })
14+ local bottom_right_popup = Popup ({ border = " single" })
1415
1516local layout = Layout (
1617 {
@@ -22,7 +23,10 @@ local layout = Layout(
2223 },
2324 Layout .Box ({
2425 Layout .Box (top_popup , { size = " 40%" }),
25- Layout .Box (bottom_popup , { size = " 60%" }),
26+ Layout .Box ({
27+ Layout .Box (bottom_left_popup , { size = " 50%" }),
28+ Layout .Box (bottom_right_popup , { size = " 50%" }),
29+ }, { dir = " row" , size = " 60%" }),
2630 }, { dir = " col" })
2731)
2832
You can’t perform that action at this time.
0 commit comments