Skip to content

Commit 61f333e

Browse files
author
farfromrefug
committed
chore: tsc
1 parent acf3ad7 commit 61f333e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bottomnavigationbar/bottomnavigationbar.android.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,8 @@ export class BottomNavigationTab extends BottomNavigationTabBase {
257257
this.inactiveColor instanceof Color
258258
? this.inactiveColor.android
259259
: this.nativeViewProtected.getIconTintList()
260-
? this.nativeViewProtected.getIconTintList().getColorForState(stateSets.BACKGROUND_DEFAULT_STATE_2, color1)
261-
: 0;
260+
? this.nativeViewProtected.getIconTintList().getColorForState(stateSets.BACKGROUND_DEFAULT_STATE_2, color1)
261+
: 0;
262262
const colorStateList = createColorStateList(color1, color2);
263263
// this.nativeViewProtected.color(colorStateList); // can we set the text color?
264264
this.nativeViewProtected.setIconTintList(colorStateList);
@@ -271,8 +271,8 @@ export class BottomNavigationTab extends BottomNavigationTabBase {
271271
this.activeColor instanceof Color
272272
? this.activeColor.android
273273
: this.nativeViewProtected.getIconTintList()
274-
? this.nativeViewProtected.getIconTintList().getColorForState(stateSets.SELECTED_STATE_SET, color2)
275-
: 0;
274+
? this.nativeViewProtected.getIconTintList().getColorForState(stateSets.SELECTED_STATE_SET, color2)
275+
: 0;
276276
const colorStateList = createColorStateList(color1, color2);
277277
// this.nativeViewProtected.setText(colorStateList); // can we set the text color?
278278
this.nativeViewProtected.setIconTintList(colorStateList);

0 commit comments

Comments
 (0)