Page 4 of 4

white bar on launch image

Posted: Tue Jun 03, 2014 4:55 am
by Matt6607699

Ok thank you


white bar on launch image

Posted: Tue Jun 03, 2014 1:35 pm
by Evgene Karachevtsev

Hello Matt,

Please, upgrade libraries version to v2.0. It should help. Take a look at this link: http://devcenter.appery.io/documentat...


white bar on launch image

Posted: Tue Jun 03, 2014 6:00 pm
by Matt6607699

V2 solved the Launch Image problem but now it doesn't display my custom navigation bar icons and messes up my image sizes and button label content throughout the app.


white bar on launch image

Posted: Tue Jun 03, 2014 8:14 pm
by Kateryna Grynko

Hi Matt,

1) Use the following CSS to create a custom navbar icon:pre[name=mobilenavbaritemName]:after{
background:url("http://example.com/icon.png");
}/pre
2) To change image size:preApperyio("imageName").height(100);
Apperyio("imageName").width(100);/pre
3) To change a button text:preApperyio("bittonName").text("new text");/pre


white bar on launch image

Posted: Wed Jun 04, 2014 4:57 pm
by Matt6607699

For most of the buttons that I change, I normally use:
element.css("height","100px");
because I do change them in mapping.

I tried:
element.height("100px");
element.height(100);
$(element).height('100px");
$(element).css("height",100px);
Apperyio("remove_button").height(100);

none of these worked to change the buttons in my mapping responses add JS after upgrading to libraries V2


white bar on launch image

Posted: Wed Jun 04, 2014 5:38 pm
by Matt6607699

Libraries V1.2 worked great for me aside from the Launch image. Is there any work around the launch image problem using v1.2?


white bar on launch image

Posted: Thu Jun 05, 2014 10:23 am
by obullei

Hello!

Please look here: http://stackoverflow.com/a/19709974
Here you can find recommendations how to solve this problem.


white bar on launch image

Posted: Sat Jun 07, 2014 1:14 pm
by Matt6607699

That worked nicely, Thanks!