diff --git a/ActionButton.js b/ActionButton.js index ec1b9e3b..42a789c7 100644 --- a/ActionButton.js +++ b/ActionButton.js @@ -177,9 +177,8 @@ const ActionButton = props => { const textColor = buttonTextStyle.color || "rgba(255,255,255,1)"; return ( - { ]} > {buttonText} - + ); }; diff --git a/package.json b/package.json index 75a66d5a..283dd5f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-action-button", - "version": "2.9.0", + "version": "3.0.1", "description": "customizable multi-action-button component for react-native", "main": "ActionButton.js", "scripts": { diff --git a/shared.js b/shared.js index 44aa9c71..bb0286e0 100644 --- a/shared.js +++ b/shared.js @@ -23,7 +23,7 @@ export const alignItemsMap = { right: "flex-end" }; -export const isAndroid = Platform.OS === "android"; +export const isAndroid = false; export function getTouchableComponent(useNativeFeedback) { if (useNativeFeedback === true && isAndroid === true) {