react-native-star-rating-widget
Advanced tools
Comparing version
@@ -42,3 +42,3 @@ "use strict"; | ||
const x = gestureEvent.moveX - layout.current.x; | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars)); | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars * 2) / 2); | ||
onChange(newRating); | ||
@@ -50,3 +50,3 @@ } | ||
const x = gestureEvent.x0 - layout.current.x; | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars)); | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars * 2) / 2); | ||
onChange(newRating); | ||
@@ -142,3 +142,4 @@ } | ||
starRating: { | ||
flexDirection: "row" | ||
flexDirection: "row", | ||
alignSelf: "flex-start" | ||
}, | ||
@@ -145,0 +146,0 @@ star: { |
@@ -28,3 +28,3 @@ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } | ||
const x = gestureEvent.moveX - layout.current.x; | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars)); | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars * 2) / 2); | ||
onChange(newRating); | ||
@@ -36,3 +36,3 @@ } | ||
const x = gestureEvent.x0 - layout.current.x; | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars)); | ||
const newRating = Math.max(minRating, Math.ceil(x / layout.current.width * maxStars * 2) / 2); | ||
onChange(newRating); | ||
@@ -128,3 +128,4 @@ } | ||
starRating: { | ||
flexDirection: "row" | ||
flexDirection: "row", | ||
alignSelf: "flex-start" | ||
}, | ||
@@ -131,0 +132,0 @@ star: { |
{ | ||
"name": "react-native-star-rating-widget", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "A star rating widget for react native", | ||
@@ -5,0 +5,0 @@ "main": "lib/commonjs/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
36346
1.1%432
0.7%