[RN] Don't tint the children, tint the background only

This commit is contained in:
Lyubo Marinov 2017-12-21 00:00:34 -06:00
parent 9591cb54a2
commit 25b130f8e8
1 changed files with 10 additions and 4 deletions

View File

@ -104,8 +104,10 @@ export default class TintedView extends Component<Props, State> {
const assignState = !this.state;
if (prevColor !== nextColor || prevOpacity !== nextOpacity
|| prevStyle !== nextStyle || assignState) {
if (assignState
|| prevColor !== nextColor
|| prevOpacity !== nextOpacity
|| prevStyle !== nextStyle) {
const nextState = {
style: {
...BASE_STYLE,
@ -131,9 +133,13 @@ export default class TintedView extends Component<Props, State> {
* @returns {ReactElement}
*/
render() {
// XXX Don't tint the children, tint the background only.
return (
<View style = { this.state.style }>
{ this.props.children }
<View style = { BASE_STYLE }>
<View style = { this.state.style } />
<View style = { BASE_STYLE }>
{ this.props.children }
</View>
</View>
);
}