mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 12:39:17 +00:00
more text color for android dark
This commit is contained in:
parent
74b4041dfe
commit
d1725116c1
@ -109,7 +109,7 @@ export function Conversation({ navigation, cardId, channelId, closeConversation,
|
||||
<Text style={styles.editHeader}>Edit Message Text:</Text>
|
||||
<View style={styles.inputField}>
|
||||
<TextInput style={styles.input} value={state.editMessage} onChangeText={actions.setEditMessage}
|
||||
autoCapitalize="sentences" placeholder="Message Text" multiline={true} />
|
||||
autoCapitalize="sentences" placeholder="Message Text" multiline={true} placeholderTextColor={Colors.grey} />
|
||||
</View>
|
||||
<View style={styles.editControls}>
|
||||
<TouchableOpacity style={styles.cancel} onPress={actions.hideEdit}>
|
||||
|
@ -246,7 +246,7 @@ export function ProfileBody() {
|
||||
</View>
|
||||
<View style={styles.modalControls}>
|
||||
<TouchableOpacity style={styles.cancel} onPress={actions.hideDelete}>
|
||||
<Text>Cancel</Text>
|
||||
<Text style={styles.canceltext}>Cancel</Text>
|
||||
</TouchableOpacity>
|
||||
{ state.confirmDelete === 'delete' && (
|
||||
<TouchableOpacity style={styles.remove} onPress={remove}>
|
||||
@ -277,7 +277,7 @@ export function ProfileBody() {
|
||||
</View>
|
||||
<View style={styles.modalControls}>
|
||||
<TouchableOpacity style={styles.close} onPress={actions.hideBlockedCards}>
|
||||
<Text>Close</Text>
|
||||
<Text style={styles.canceltext}>Close</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</View>
|
||||
@ -298,7 +298,7 @@ export function ProfileBody() {
|
||||
</View>
|
||||
<View style={styles.modalControls}>
|
||||
<TouchableOpacity style={styles.close} onPress={actions.hideBlockedChannels}>
|
||||
<Text>Close</Text>
|
||||
<Text style={styles.canceltext}>Close</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</View>
|
||||
|
@ -128,6 +128,7 @@ export const styles = StyleSheet.create({
|
||||
input: {
|
||||
fontSize: 14,
|
||||
flexGrow: 1,
|
||||
color: Colors.text,
|
||||
},
|
||||
inputField: {
|
||||
width: '100%',
|
||||
|
Loading…
Reference in New Issue
Block a user