mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-26 08:55:56 +01:00
REF
This commit is contained in:
parent
2b5d00c0bd
commit
6848aa86ac
2 changed files with 29 additions and 6 deletions
|
@ -69,7 +69,12 @@ export class BlueCard extends Component {
|
|||
|
||||
export class BlueText extends Component {
|
||||
render() {
|
||||
return <Text {...this.props} style={{ color: BlueApp.settings.foregroundColor }} />;
|
||||
return (
|
||||
<Text
|
||||
{...this.props}
|
||||
style={{ color: BlueApp.settings.foregroundColor }}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -92,7 +97,12 @@ export class BlueListItem extends Component {
|
|||
|
||||
export class BlueFormLabel extends Component {
|
||||
render() {
|
||||
return <FormLabel {...this.props} labelStyle={{ color: BlueApp.settings.foregroundColor }} />;
|
||||
return (
|
||||
<FormLabel
|
||||
{...this.props}
|
||||
labelStyle={{ color: BlueApp.settings.foregroundColor }}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -102,7 +112,10 @@ export class BlueFormInput extends Component {
|
|||
<FormInput
|
||||
{...this.props}
|
||||
inputStyle={{ color: BlueApp.settings.foregroundColor }}
|
||||
containerStyle={{ borderBottomColor: BlueApp.settings.foregroundColor, borderBottomWidth: 0.5 }}
|
||||
containerStyle={{
|
||||
borderBottomColor: BlueApp.settings.foregroundColor,
|
||||
borderBottomWidth: 0.5,
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
@ -113,8 +126,14 @@ export class BlueFormInputAddress extends Component {
|
|||
return (
|
||||
<FormInput
|
||||
{...this.props}
|
||||
inputStyle={{ color: BlueApp.settings.foregroundColor, fontSize: (isIpad && 10) || 12 }}
|
||||
containerStyle={{ borderBottomColor: BlueApp.settings.foregroundColor, borderBottomWidth: 0.5 }}
|
||||
inputStyle={{
|
||||
color: BlueApp.settings.foregroundColor,
|
||||
fontSize: (isIpad && 10) || 12,
|
||||
}}
|
||||
containerStyle={{
|
||||
borderBottomColor: BlueApp.settings.foregroundColor,
|
||||
borderBottomWidth: 0.5,
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -114,7 +114,11 @@ export default class TransactionsList extends Component {
|
|||
style: { color: BlueApp.settings.foregroundColor, fontSize: 25 },
|
||||
}}
|
||||
rightComponent={
|
||||
<Icon name="refresh" color={BlueApp.settings.foregroundColor} onPress={() => this.refresh()} />
|
||||
<Icon
|
||||
name="refresh"
|
||||
color={BlueApp.settings.foregroundColor}
|
||||
onPress={() => this.refresh()}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
<BlueCard title="My Transactions">
|
||||
|
|
Loading…
Add table
Reference in a new issue