Skip to content

Commit

Permalink
Fixed DrawerLayoutAndroid padding syntax which was causing the Expo S…
Browse files Browse the repository at this point in the history
…nack to crash
  • Loading branch information
Rogi Solorzano committed Jun 13, 2020
1 parent b665e59 commit 1400f09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/drawerlayoutandroid.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ const styles = StyleSheet.create({
flex: 1,
alignItems: "center",
justifyContent: "center",
paddingTop: "50px",
paddingTop: 50,
backgroundColor: "#ecf0f1",
padding: 8
},
navigationContainer: {
flex: 1,
paddingTop: "50px",
paddingTop: 50,
backgroundColor: "#fff",
padding: 8
}
Expand Down
4 changes: 2 additions & 2 deletions website/versioned_docs/version-0.62/drawerlayoutandroid.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ const styles = StyleSheet.create({
flex: 1,
alignItems: "center",
justifyContent: "center",
paddingTop: "50px",
paddingTop: 50,
backgroundColor: "#ecf0f1",
padding: 8
},
navigationContainer: {
flex: 1,
paddingTop: "50px",
paddingTop: 50,
backgroundColor: "#fff",
padding: 8
}
Expand Down

0 comments on commit 1400f09

Please sign in to comment.