Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RNMobile] Support Theme Colors and Gradients #22197

Merged
merged 15 commits into from
Jun 3, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix format issue
  • Loading branch information
chipsnyder committed May 8, 2020
commit b8d41810818897337ff536f6a47d2b3ed8c6525e
4 changes: 1 addition & 3 deletions packages/block-library/src/button/edit.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,7 @@ class ButtonEdit extends Component {
const { gradient, customGradient } = attributes;

if ( customGradient || gradient ) {
return (
customGradient || gradientValue
);
return customGradient || gradientValue;
}
return (
getColorAndStyleProps( attributes ).style?.backgroundColor ||
Expand Down