1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-13 22:12:50 +02:00

Mobile: Fixed the switch background color on config screen (#2919)

This commit is contained in:
Rahul Mohata
2020-05-09 20:09:02 +05:30
committed by GitHub
parent 5a174b2236
commit dbe8d3a68e

View File

@@ -126,7 +126,7 @@ class ConfigScreenComponent extends BaseScreenComponent {
alert('Profile has been exported!');
} catch (error) {
alert(`Could not export files: ${error.message}`);
} finally {
} finally {
this.setState({ profileExportStatus: 'idle' });
}
};
@@ -392,7 +392,7 @@ class ConfigScreenComponent extends BaseScreenComponent {
<Text key="label" style={this.styles().switchSettingText}>
{md.label()}
</Text>
<Switch key="control" style={this.styles().switchSettingControl} value={value} onValueChange={value => updateSettingValue(key, value)} />
<Switch key="control" style={this.styles().switchSettingControl} trackColor={{ false: theme.strongDividerColor }} value={value} onValueChange={value => updateSettingValue(key, value)} />
</View>
{descriptionComp}
</View>