From 9173ac30352a803b54247f70b0b672e8462b960c Mon Sep 17 00:00:00 2001 From: EzequielB Date: Wed, 8 Apr 2020 19:57:47 -0300 Subject: [PATCH 1/2] App crashes if marginBottom is a string --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index afe950f4ac3..906d37d1075 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -163,7 +163,7 @@ const styles = StyleSheet.create({ alignItems: 'center', backgroundColor: '#DDDDDD', padding: 10, - marginBottom: '10' + marginBottom: 10 } }) From 3b6cd00b68916293b5f937839c1321e660e6710d Mon Sep 17 00:00:00 2001 From: EzequielB Date: Fri, 10 Apr 2020 10:19:38 -0300 Subject: [PATCH 2/2] Update tutorial.md --- website/versioned_docs/version-0.62/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.62/tutorial.md b/website/versioned_docs/version-0.62/tutorial.md index 3f70be8a753..896c0262462 100644 --- a/website/versioned_docs/version-0.62/tutorial.md +++ b/website/versioned_docs/version-0.62/tutorial.md @@ -164,7 +164,7 @@ const styles = StyleSheet.create({ alignItems: 'center', backgroundColor: '#DDDDDD', padding: 10, - marginBottom: '10' + marginBottom: 10 } })