#177 fix messages container padding
This commit is contained in:
parent
365b4e8ad7
commit
f3c1710415
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
(defn messages-container [bottom]
|
(defn messages-container [bottom]
|
||||||
{:flex 1
|
{:flex 1
|
||||||
:bottom bottom})
|
:padding-bottom bottom})
|
||||||
|
|
||||||
(def toolbar-view
|
(def toolbar-view
|
||||||
{:flexDirection :row
|
{:flexDirection :row
|
||||||
|
|
|
@ -96,10 +96,11 @@
|
||||||
|
|
||||||
(defview suggestions-web-view []
|
(defview suggestions-web-view []
|
||||||
[url [:web-view-url]]
|
[url [:web-view-url]]
|
||||||
[web-view {:source {:uri url}
|
(when url
|
||||||
:java-script-enabled true
|
[web-view {:source {:uri url}
|
||||||
:style {:height 300}
|
:java-script-enabled true
|
||||||
:on-navigation-state-change on-navigation-change}])
|
:style {:height 300}
|
||||||
|
:on-navigation-state-change on-navigation-change}]))
|
||||||
|
|
||||||
(defview placeholder []
|
(defview placeholder []
|
||||||
[suggestions [:get-content-suggestions]]
|
[suggestions [:get-content-suggestions]]
|
||||||
|
|
Loading…
Reference in New Issue