fix huge view overlaying everything for the action button
Former-commit-id: faf9c786df
This commit is contained in:
parent
81538345b3
commit
db48cc6072
|
@ -116,9 +116,10 @@
|
||||||
:color :white})
|
:color :white})
|
||||||
|
|
||||||
(defn action-buttons-container [animation? offset-y]
|
(defn action-buttons-container [animation? offset-y]
|
||||||
|
;; todo fix overlaying of parent view
|
||||||
{:position :absolute
|
{:position :absolute
|
||||||
:left 0
|
|
||||||
:right 0
|
:right 0
|
||||||
:top 0
|
:height 230
|
||||||
|
:width 80
|
||||||
:bottom 0
|
:bottom 0
|
||||||
:transform [{:translateY (if animation? offset-y 1)}]})
|
:transform [{:translateY (if animation? offset-y 1)}]})
|
||||||
|
|
|
@ -103,9 +103,8 @@
|
||||||
[view-id [:get :view-id]
|
[view-id [:get :view-id]
|
||||||
tab-animation? [:get :prev-tab-view-id]]
|
tab-animation? [:get :prev-tab-view-id]]
|
||||||
[drawer-view
|
[drawer-view
|
||||||
[view {:style common-st/flex}
|
|
||||||
[view {:style common-st/flex
|
[view {:style common-st/flex
|
||||||
:pointerEvents (if tab-animation? :none :auto)}
|
:pointerEvents (if tab-animation? :none :auto)}
|
||||||
(doall (map #(tab-view %) tab-list))]
|
(doall (map #(tab-view %) tab-list))
|
||||||
[tabs {:selected-view-id view-id
|
[tabs {:selected-view-id view-id
|
||||||
:tab-list tab-list}]]])
|
:tab-list tab-list}]]])
|
||||||
|
|
|
@ -14,7 +14,11 @@
|
||||||
(def tab-height 56)
|
(def tab-height 56)
|
||||||
|
|
||||||
(defn tabs-container [hidden? animation? offset-y]
|
(defn tabs-container [hidden? animation? offset-y]
|
||||||
{:height tabs-height
|
{:position :absolute
|
||||||
|
:bottom 0
|
||||||
|
:left 0
|
||||||
|
:right 0
|
||||||
|
:height tabs-height
|
||||||
:backgroundColor color-white
|
:backgroundColor color-white
|
||||||
:marginBottom (if (or hidden? animation?)
|
:marginBottom (if (or hidden? animation?)
|
||||||
(- tabs-height) 0)
|
(- tabs-height) 0)
|
||||||
|
@ -60,4 +64,5 @@
|
||||||
:left 0
|
:left 0
|
||||||
:right 0
|
:right 0
|
||||||
:bottom 0
|
:bottom 0
|
||||||
|
:padding-bottom 59
|
||||||
:transform [{:translateX offset-x}]})
|
:transform [{:translateX offset-x}]})
|
||||||
|
|
|
@ -88,6 +88,7 @@
|
||||||
[view st/empty-contact-groups
|
[view st/empty-contact-groups
|
||||||
[react/icon :group_big st/empty-contacts-icon]
|
[react/icon :group_big st/empty-contacts-icon]
|
||||||
[text {:style st/empty-contacts-text} (label :t/no-contacts)]])
|
[text {:style st/empty-contacts-text} (label :t/no-contacts)]])
|
||||||
|
[view st/buttons-container
|
||||||
[action-button {:buttonColor color-blue
|
[action-button {:buttonColor color-blue
|
||||||
:offsetY 16
|
:offsetY 16
|
||||||
:offsetX 16}
|
:offsetX 16}
|
||||||
|
@ -96,4 +97,4 @@
|
||||||
:buttonColor :#9b59b6
|
:buttonColor :#9b59b6
|
||||||
:onPress #(dispatch [:navigate-to :new-contact])}
|
:onPress #(dispatch [:navigate-to :new-contact])}
|
||||||
[icon {:name :android-create
|
[icon {:name :android-create
|
||||||
:style create-icon}]]]])))
|
:style create-icon}]]]]])))
|
||||||
|
|
|
@ -180,3 +180,10 @@
|
||||||
(def address-explication
|
(def address-explication
|
||||||
{:textAlign :center
|
{:textAlign :center
|
||||||
:color "#838c93de"})
|
:color "#838c93de"})
|
||||||
|
|
||||||
|
(def buttons-container
|
||||||
|
{:position :absolute
|
||||||
|
:bottom 0
|
||||||
|
:right 0
|
||||||
|
:width 200
|
||||||
|
:height 170})
|
||||||
|
|
Loading…
Reference in New Issue