Remove inline style

This commit is contained in:
Diego Mello 2020-04-27 09:56:23 -03:00
parent 478ff9f181
commit b9105a8d12
1 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,9 @@ import { PASSCODE_KEY } from '../constants/localAuthentication';
const styles = StyleSheet.create({
listPadding: {
paddingVertical: 36
},
emptySpace: {
height: 36
}
});
@ -197,7 +200,7 @@ class ScreenLockConfigView extends React.Component {
}
return (
<>
<View style={{ height: 36 }} />
<View style={styles.emptySpace} />
<Separator theme={theme} />
{autoLock ? this.defaultAutoLockOptions.map(item => this.renderItem({ item })) : null}
</>