white bar on launch image
Ok thank you
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Ok thank you
Hello Matt,
Please, upgrade libraries version to v2.0. It should help. Take a look at this link: http://devcenter.appery.io/documentat...
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.
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
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
Libraries V1.2 worked great for me aside from the Launch image. Is there any work around the launch image problem using v1.2?
Hello!
Please look here: http://stackoverflow.com/a/19709974
Here you can find recommendations how to solve this problem.
That worked nicely, Thanks!