I want to create gradient Background splash screen in my react native application but I'm unable to find sources for it, can anyone pls help me out of it
Related
Generated an app icon using
https://appicon.co/
Ive used this before for other apps and its working great but this time my app icon has white padding on android OS, , any idea why ?
Im using react native & already added assets to android native side
app icon
How icon looks on android home
icon on android
Try using this website to generate icons before uploading the image here make sure your icon doesn't have any transparent padding.
I've used this website multiple times works perfectly.
Turns out the issue is because the icon I'm using has transparent background. IOS did add white bg by default and handled it, android handled it by rapping the icon with white padding also.
Fixed after changing background to be white.
Hi i'm new to learning react native, anyway i'm making an app with two screens, the thing is i wanna the first screen stay in portrait orientation but not the second screen. I want the second screen turn to landscape mode when i switch the app to that screen. Is there any simple way to do that.
What is the best way to make a toolbar with a hamburger and search (icon) with some drawer effect on the top of the screen for iOS and Android accordingly on react-native?
React native has bridged the toolbar and the drawer layout from android so you can use both of them with no problem. https://facebook.github.io/react-native/docs/toolbarandroid.html If you want to build you app also for iOS I would take a look at React navigation witch mining’s native behavior and is cross platform.
am creating one app on phone gap using cordova.
facing one problem is that splash screen, i want to show that splash screen only one time in my app. means when user install that app first time spalsh screen displayed but when second time user open that app splash screen is not displaying.
if anybody have solution of this problem then please share your code or idea.
Thanks in Advance.
In config.xml you can specify the splash screen for cordova application.
https://github.com/apache/cordova-plugin-splashscreen
Moreover, Splash screen plugin allows you to add functionality to your splash screen like when to hide splash screen and how many second splash screen should appear etc. So please take a look at the upper documentation.
I'm trying to costumize tabbar interface for my app, is it possibile to change font, font size, put custom backround pattern image?
I realy need to change it so it can fit my app needs.
I'm the author of the tab bar plugin (repo on GitHub). It does not yet support changing the background image or the font, but it shouldn't be a big problem to implement this. I'll put it on the wishlist but at the moment I don't have time. If you want to implement it yourself in the meantime, look at the tab bar's setBackgroundImage method and in the plugin code, search for selectedImageTintColorRgba to see where you have to implement additional options.