forked from vergnet/application-amicale
Improved settings nightmode checkbox
This commit is contained in:
parent
e2f74b97e6
commit
8c779e0ed6
1 changed files with 5 additions and 3 deletions
|
@ -171,8 +171,10 @@ export default class SettingsScreen extends React.Component<Props, State> {
|
||||||
</Text>
|
</Text>
|
||||||
</Body>
|
</Body>
|
||||||
<Right>
|
<Right>
|
||||||
<CheckBox checked={this.state.nightMode}
|
<CheckBox
|
||||||
onPress={() => this.toggleNightMode()}/>
|
checked={this.state.nightMode}
|
||||||
|
onPress={() => this.toggleNightMode()}
|
||||||
|
style={{marginRight: 20}}/>
|
||||||
</Right>
|
</Right>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue