Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 4263dc4

Browse files
committed
Use ListContent nevertheless since it looks more consistent with other lists
1 parent b8de32e commit 4263dc4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/view/cli.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ const CLIView = ({ store, nav }) => (
2121
<Button disabled onPress={() => {}} />
2222
</Header>
2323
<Background color={color.cliBackground}>
24-
<List
25-
data={store.logs.slice()}
26-
renderItem={text => <LogItem text={text} />}
27-
scrollToEnd={true}
28-
/>
24+
<ListContent>
25+
<List
26+
data={store.logs.slice()}
27+
renderItem={text => <LogItem text={text} />}
28+
scrollToEnd={true}
29+
/>
30+
</ListContent>
2931
</Background>
3032
</Background>
3133
);
@@ -39,8 +41,6 @@ const iStyles = StyleSheet.create({
3941
text: {
4042
textAlign: 'left',
4143
fontSize: font.sizeS,
42-
paddingLeft: 50,
43-
paddingRight: 50,
4444
},
4545
});
4646

0 commit comments

Comments
 (0)