React native navigation Android tab bar icon doesn't appear











up vote
0
down vote

favorite












I am using react-native-navigation for my project, and i have problems when i try to show a icon using Drawables in Android, but in IOS when i set the xcassets it works perfect.



IOS simulator



Android simulator



I follow the instructions and i create all Drawables (hdpi, mdpi, xhdpi, xxhdpi, xxxhdpi) for android



Example of my archives in visual studio code
Example of my archives in android studio



the name of my icon is: icon_home.png



My code


tabs: [{
//HomeMenu
screen: "myMenu.MainMenu",

title:"",

label:"",

showIcon: true,

icon: {uri: 'icon_home', scale: 6},

//selectedIcon: {uri: 'homeicons',scale: 6},


navigatorStyle: { //add this to change top bar navigator.

drawUnderNavBar: true,

navBarTranslucent: true,

navBarTransparent: true,

navBarBackgroundColor: 'transparent',

topBarElevationShadowEnabled: false

},


iconInsets: { // add this to change icon position (optional, iOS only)

top: 0, // optional, default is 0.

left: 0, // optional, default is 0.

bottom: -12, // optional, default is 0.

right: 0 // optional, default is 0.

},



style Android

appStyle: { //Android

tabBarButtonColor: '#6c6d70',

tabBarBackgroundColor: '#cccc',

tabBarSelectedButtonColor: 'rgb(50, 184, 201)',

showIcon:true

},






im so new in this framework, i hope some one can help me because im stuck in this point for two days, my last option its import my icon like a image .










share|improve this question







New contributor




Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • i forgot to set my versions react native = > "0.57.1" react native navigation => "^1.1.487"
    – Martin Duran Anguiano
    yesterday















up vote
0
down vote

favorite












I am using react-native-navigation for my project, and i have problems when i try to show a icon using Drawables in Android, but in IOS when i set the xcassets it works perfect.



IOS simulator



Android simulator



I follow the instructions and i create all Drawables (hdpi, mdpi, xhdpi, xxhdpi, xxxhdpi) for android



Example of my archives in visual studio code
Example of my archives in android studio



the name of my icon is: icon_home.png



My code


tabs: [{
//HomeMenu
screen: "myMenu.MainMenu",

title:"",

label:"",

showIcon: true,

icon: {uri: 'icon_home', scale: 6},

//selectedIcon: {uri: 'homeicons',scale: 6},


navigatorStyle: { //add this to change top bar navigator.

drawUnderNavBar: true,

navBarTranslucent: true,

navBarTransparent: true,

navBarBackgroundColor: 'transparent',

topBarElevationShadowEnabled: false

},


iconInsets: { // add this to change icon position (optional, iOS only)

top: 0, // optional, default is 0.

left: 0, // optional, default is 0.

bottom: -12, // optional, default is 0.

right: 0 // optional, default is 0.

},



style Android

appStyle: { //Android

tabBarButtonColor: '#6c6d70',

tabBarBackgroundColor: '#cccc',

tabBarSelectedButtonColor: 'rgb(50, 184, 201)',

showIcon:true

},






im so new in this framework, i hope some one can help me because im stuck in this point for two days, my last option its import my icon like a image .










share|improve this question







New contributor




Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • i forgot to set my versions react native = > "0.57.1" react native navigation => "^1.1.487"
    – Martin Duran Anguiano
    yesterday













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am using react-native-navigation for my project, and i have problems when i try to show a icon using Drawables in Android, but in IOS when i set the xcassets it works perfect.



IOS simulator



Android simulator



I follow the instructions and i create all Drawables (hdpi, mdpi, xhdpi, xxhdpi, xxxhdpi) for android



Example of my archives in visual studio code
Example of my archives in android studio



the name of my icon is: icon_home.png



My code


tabs: [{
//HomeMenu
screen: "myMenu.MainMenu",

title:"",

label:"",

showIcon: true,

icon: {uri: 'icon_home', scale: 6},

//selectedIcon: {uri: 'homeicons',scale: 6},


navigatorStyle: { //add this to change top bar navigator.

drawUnderNavBar: true,

navBarTranslucent: true,

navBarTransparent: true,

navBarBackgroundColor: 'transparent',

topBarElevationShadowEnabled: false

},


iconInsets: { // add this to change icon position (optional, iOS only)

top: 0, // optional, default is 0.

left: 0, // optional, default is 0.

bottom: -12, // optional, default is 0.

right: 0 // optional, default is 0.

},



style Android

appStyle: { //Android

tabBarButtonColor: '#6c6d70',

tabBarBackgroundColor: '#cccc',

tabBarSelectedButtonColor: 'rgb(50, 184, 201)',

showIcon:true

},






im so new in this framework, i hope some one can help me because im stuck in this point for two days, my last option its import my icon like a image .










share|improve this question







New contributor




Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I am using react-native-navigation for my project, and i have problems when i try to show a icon using Drawables in Android, but in IOS when i set the xcassets it works perfect.



IOS simulator



Android simulator



I follow the instructions and i create all Drawables (hdpi, mdpi, xhdpi, xxhdpi, xxxhdpi) for android



Example of my archives in visual studio code
Example of my archives in android studio



the name of my icon is: icon_home.png



My code


tabs: [{
//HomeMenu
screen: "myMenu.MainMenu",

title:"",

label:"",

showIcon: true,

icon: {uri: 'icon_home', scale: 6},

//selectedIcon: {uri: 'homeicons',scale: 6},


navigatorStyle: { //add this to change top bar navigator.

drawUnderNavBar: true,

navBarTranslucent: true,

navBarTransparent: true,

navBarBackgroundColor: 'transparent',

topBarElevationShadowEnabled: false

},


iconInsets: { // add this to change icon position (optional, iOS only)

top: 0, // optional, default is 0.

left: 0, // optional, default is 0.

bottom: -12, // optional, default is 0.

right: 0 // optional, default is 0.

},



style Android

appStyle: { //Android

tabBarButtonColor: '#6c6d70',

tabBarBackgroundColor: '#cccc',

tabBarSelectedButtonColor: 'rgb(50, 184, 201)',

showIcon:true

},






im so new in this framework, i hope some one can help me because im stuck in this point for two days, my last option its import my icon like a image .







android react-native react-native-navigation wix-react-native-navigation






share|improve this question







New contributor




Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









Martin Duran Anguiano

1




1




New contributor




Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Martin Duran Anguiano is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • i forgot to set my versions react native = > "0.57.1" react native navigation => "^1.1.487"
    – Martin Duran Anguiano
    yesterday


















  • i forgot to set my versions react native = > "0.57.1" react native navigation => "^1.1.487"
    – Martin Duran Anguiano
    yesterday
















i forgot to set my versions react native = > "0.57.1" react native navigation => "^1.1.487"
– Martin Duran Anguiano
yesterday




i forgot to set my versions react native = > "0.57.1" react native navigation => "^1.1.487"
– Martin Duran Anguiano
yesterday

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Martin Duran Anguiano is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401798%2freact-native-navigation-android-tab-bar-icon-doesnt-appear%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes








Martin Duran Anguiano is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















Martin Duran Anguiano is a new contributor. Be nice, and check out our Code of Conduct.













Martin Duran Anguiano is a new contributor. Be nice, and check out our Code of Conduct.












Martin Duran Anguiano is a new contributor. Be nice, and check out our Code of Conduct.















 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401798%2freact-native-navigation-android-tab-bar-icon-doesnt-appear%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Berounka

Sphinx de Gizeh

Different font size/position of beamer's navigation symbols template's content depending on regular/plain...