For those of you using the InputAccessoryView component on iOS what are you doing for Android since it only works on iOS?
I've found these two libraries on github: https://github.com/ardaogulcan/react-native-keyboard-accessory https://github.com/wix/react-native-keyboard-input.
Anything else out there to use or maybe some other approach I'm not thinking about?
Related
Using React-Native I can not block the screenshot. I need to block or blur the screen for IOs. I've tried several things but I could not. Does anyone have a solution?
i think this libary should be helping https://github.com/hawkup/react-native-prevent-screenshot
Currently the best method to do prevention in IOS is using https://screenshieldkit.com/
However, I created a lib to block screenshot (on android) and detect screenshot action on IOS.
https://www.npmjs.com/package/react-native-screenshot-prevention
How can we justify text in react native for both android and iOS without using webView, since webView is not visible in android after placing it inside another view.
The following option only works for iOS.
textAlign='justify'
https://facebook.github.io/react-native/docs/text.html#style
As it s written here, justify for android is not available... Most of the tricks suggest to use left or then a webview as you said...
Using webView resolved the issue. To show webView inside the ScrollView I just had to add height to webView.
https://github.com/jsdf/react-native-htmlview/issues/7
Does anyone know how to create a popup menu like the one seen in the mail app on iOS7 which lets you reply, reply all, forward and print? I have been researching it but can't find an answer. I am still quite new to Xcode.
You are after the UIActionSheet. This is a control found within all versions of iOS, but has recently been re-skined for iOS7.
Update: UIActionSheet was deprecated in iOS 8, and instead you should use UIAlertController with the style of actionSheet
When i saw new iOS 7.0 then i saw clock icon is on running state. So i am curious to know, that can we also make icons dynamically by Xcode?
i googled also about this but didn't found any question or hint on this.
No, we're not able to created animated Springboard icons. The following still applies to iOS7.
Changing Icon per Day
Dynamic icon iOS
I have implemented iphone application using Titanium..But I want to convert in to android application.
Is it possible doing small chnges?
There are changes, but not major changes. Here is what i would do in my case?
Understand How iPhone works and Android works. Compare them in terms
of working model and OS Architecture. This will purely give you more idea on how to make an real Android App... else you would end up cloning your iPhone feel to Android again.
List out all the components i have used in iPhone and check out the
similar component available for me to replace. { For instance,
TableView has a delete option for iPhone and not for Android }
I would remove the back button implemented in iPhone and check how i
can move between windows with the Android BackKey.
Styles and Animation i have used in iPhone will not be the same for
Android. I think they don't have full supported ones too.
For example: style:Titanium.UI.iPhone.ActivityIndicatorStyle.BIG,
maybe you experience some performance differences depending on your implementation since the javascript engine is not the same. if so, you maybe need to restructure your app to ensure a performance enhancement.