Skip to content

Commit

Permalink
iOS maxHeight bug is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathChaos committed Dec 11, 2019
1 parent 85a7a91 commit ab103f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/Timeline.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const _container = backgroundColor => ({
export default {
listStyle: {
width: ScreenWidth,
maxHeight: isAndroid && ScreenHeight / 2 - 32
maxHeight: isAndroid ? ScreenHeight / 2 - 32 : null
},
contentContainerStyle: {
alignItems: "center"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-beautiful-timeline",
"version": "0.0.6",
"version": "0.0.7",
"description": "Fully customizable, beautifully designed Timeline for React Native.",
"keywords": [
"timeline",
Expand Down

0 comments on commit ab103f3

Please sign in to comment.