Skip to content

Commit ab103f3

Browse files
committed
iOS maxHeight bug is fixed
1 parent 85a7a91 commit ab103f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/src/Timeline.style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const _container = backgroundColor => ({
1414
export default {
1515
listStyle: {
1616
width: ScreenWidth,
17-
maxHeight: isAndroid && ScreenHeight / 2 - 32
17+
maxHeight: isAndroid ? ScreenHeight / 2 - 32 : null
1818
},
1919
contentContainerStyle: {
2020
alignItems: "center"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-beautiful-timeline",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Fully customizable, beautifully designed Timeline for React Native.",
55
"keywords": [
66
"timeline",

0 commit comments

Comments
 (0)