我想有沿頁面的底部,但在H-箱創建一個頁腳什麼到目前爲止,我已經做了不起作用:重新使用COM箱佈局容器
(defn simple-title [txt]
[re-com/title
:label txt
:level :level1])
(defn main-panel []
(fn []
[v-box
:height "100%"
:children [[h-box
:width "100%"
:children [(simple-title "Should see right at top of page (works)")]
:align-self :start]
[h-box
:width "100%"
:gap "3em"
:align-self :end
:children [(simple-title "Want right at bottom (not working)") (simple-title "Just to its right")]]]]))
我的理解是,:align-self :end
應該做的伎倆。然而,第二個h-box
出現在頁面的頂部,直接位於第一個h-box
的下方。
如果有方法可以在flexbox上自行演示問題,請發佈。對不起,我對ClojureScript不熟悉。 –