upgrade react-native-action-button (fix #398)

fix #395
This commit is contained in:
Roman Volosovskyi 2016-11-01 15:22:38 +02:00
parent d9de8a8154
commit cb433622c9
6 changed files with 14 additions and 10 deletions

View File

@ -32,7 +32,7 @@
"re-natal": "0.2.38", "re-natal": "0.2.38",
"react": "^15.3.1", "react": "^15.3.1",
"react-native": "^0.36.0", "react-native": "^0.36.0",
"react-native-action-button": "^1.1.11", "react-native-action-button": "2.0.13",
"react-native-android-sms-listener": "github:adrian-tiberius/react-native-android-sms-listener#listener-bugfix", "react-native-android-sms-listener": "github:adrian-tiberius/react-native-android-sms-listener#listener-bugfix",
"react-native-camera": "git+https://github.com/lwansbrough/react-native-camera.git", "react-native-camera": "git+https://github.com/lwansbrough/react-native-camera.git",
"react-native-circle-checkbox": "github:paramoshkinandrew/ReactNativeCircleCheckbox", "react-native-circle-checkbox": "github:paramoshkinandrew/ReactNativeCircleCheckbox",

View File

@ -50,9 +50,11 @@
(defn chats-action-button [] (defn chats-action-button []
[view {:style (st/action-buttons-container false 0) [view {:style (st/action-buttons-container false 0)
:pointerEvents :box-none} :pointerEvents :box-none}
[action-button {:buttonColor color-blue [action-button {:button-color color-blue
:offsetY 16 :offset-x 16
:offsetX 16} :offset-y -2
:hide-shadow true
:spacing 13}
[action-button-item [action-button-item
{:title (label :t/new-chat) {:title (label :t/new-chat)
:buttonColor :#9b59b6 :buttonColor :#9b59b6

View File

@ -131,6 +131,6 @@
{:position :absolute {:position :absolute
:right 0 :right 0
:height 230 :height 230
:width 220 :width 230
:bottom 0 :bottom 0
:transform [{:translateY (if animation? offset-y 1)}]}) :transform [{:translateY (if animation? offset-y 1)}]})

View File

@ -76,9 +76,11 @@
(defn contacts-action-button [] (defn contacts-action-button []
[view st/buttons-container [view st/buttons-container
[action-button {:buttonColor color-blue [action-button {:button-color color-blue
:offsetY 16 :offset-x 16
:offsetX 16} :offset-y -2
:hide-shadow true
:spacing 13}
[action-button-item [action-button-item
{:title (label :t/new-contact) {:title (label :t/new-contact)
:buttonColor :#9b59b6 :buttonColor :#9b59b6

View File

@ -205,7 +205,7 @@
{:position :absolute {:position :absolute
:bottom 0 :bottom 0
:right 0 :right 0
:width 200 :width 220
:height 170}) :height 170})
(def qr-input (def qr-input

View File

@ -6,7 +6,7 @@
[status-im.contacts.views.contact-inner :refer [contact-inner-view]])) [status-im.contacts.views.contact-inner :refer [contact-inner-view]]))
(defn on-press [whisper-identity] (defn on-press [whisper-identity]
#(dispatch [:start-chat whisper-identity])) #(dispatch [:start-chat whisper-identity {} :navigation-replace]))
(defview contact-view [{:keys [whisper-identity] :as contact}] (defview contact-view [{:keys [whisper-identity] :as contact}]
[chat [:get-chat whisper-identity]] [chat [:get-chat whisper-identity]]