canvasframework 0.5.15 → 0.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/AppBar.js +1 -1
- package/package.json +1 -1
package/components/AppBar.js
CHANGED
|
@@ -200,7 +200,7 @@ class AppBar extends Component {
|
|
|
200
200
|
|
|
201
201
|
// Icône gauche
|
|
202
202
|
if (this.leftIcon) {
|
|
203
|
-
const iconColor = this.platform === 'cupertino' ?
|
|
203
|
+
const iconColor = this.platform === 'cupertino' ? this.textColor : this.textColor;
|
|
204
204
|
if (this.leftIcon === 'menu') {
|
|
205
205
|
this.drawMenuIcon(ctx, this.x + 16, this.y + this.height / 2, iconColor);
|
|
206
206
|
} else if (this.leftIcon === 'back') {
|