diff --git a/src/swipe-item/index.js b/src/swipe-item/index.js
index 8039d0996..37fa21910 100644
--- a/src/swipe-item/index.js
+++ b/src/swipe-item/index.js
@@ -25,7 +25,9 @@ export default createComponent({
const style = {};
const { size, vertical } = this.parent;
- style[vertical ? 'height' : 'width'] = `${size}px`;
+ if (size) {
+ style[vertical ? 'height' : 'width'] = `${size}px`;
+ }
if (this.offset) {
style.transform = `translate${vertical ? 'Y' : 'X'}(${this.offset}px)`;
diff --git a/src/swipe/index.js b/src/swipe/index.js
index 947516082..bd74a4843 100644
--- a/src/swipe/index.js
+++ b/src/swipe/index.js
@@ -124,15 +124,19 @@ export default createComponent({
},
trackStyle() {
- const mainAxis = this.vertical ? 'height' : 'width';
- const crossAxis = this.vertical ? 'width' : 'height';
-
- return {
- [mainAxis]: `${this.trackSize}px`,
- [crossAxis]: this[crossAxis] ? `${this[crossAxis]}px` : '',
+ const style = {
transitionDuration: `${this.swiping ? 0 : this.duration}ms`,
transform: `translate${this.vertical ? 'Y' : 'X'}(${this.offset}px)`,
};
+
+ if (this.size) {
+ const mainAxis = this.vertical ? 'height' : 'width';
+ const crossAxis = this.vertical ? 'width' : 'height';
+ style[mainAxis] = `${this.trackSize}px`;
+ style[crossAxis] = this[crossAxis] ? `${this[crossAxis]}px` : '';
+ }
+
+ return style;
},
indicatorStyle() {
diff --git a/src/swipe/test/__snapshots__/demo.spec.js.snap b/src/swipe/test/__snapshots__/demo.spec.js.snap
index 799f7af64..7c42a21af 100644
--- a/src/swipe/test/__snapshots__/demo.spec.js.snap
+++ b/src/swipe/test/__snapshots__/demo.spec.js.snap
@@ -4,7 +4,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -15,7 +15,7 @@ exports[`renders demo correctly 1`] = `
-
+
@@ -26,7 +26,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -37,7 +37,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -48,7 +48,7 @@ exports[`renders demo correctly 1`] = `
-
+
1
2
3
@@ -59,7 +59,7 @@ exports[`renders demo correctly 1`] = `