Please help me with this. Is there any library for this? Thanks in advance
I want the method and ingredients buttons and it should be swipe able
I want the method and ingredients buttons and it should be swipe able
Try react-native-tab-view - https://github.com/satya164/react-native-tab-view
or
react-native-swipe-tabs - https://www.npmjs.com/package/react-native-swipe-tabs
Related
Please can someone help me on how to make my react native app detect when a user swipes left or right? I already researched randomly but seem not to have a positive answer.
So any function or package that can help?
I am mapping through a list of objects and I want the user to view next object in array whenever he swipes ( just like on click ).
It works with onClick but I need it with swipes.
It depends on what you want to do, you can create a carousel using a horizontal Flatlist and use pagination to swipe elements. Please add more details
Try PanResponder from the docs here
I'm displaying a list employess when clicking on tabBarButton. I want to hide the tabBar when I click on the cell to dispaly details of the employ and I want to show tabBar when I come back to the list .
please anyone help me.
thanks in advance
laxmi
[ViewControllerToBePushed setHidesBottomBarWhenPushed:YES];
I was wondering how would one add an up and down arrow to the right of a UINavigationBar for a tableview detail view. I want to create something similar to the buttons in mail: clicking one to go up and one to go down.
Thanks a lot!
Try an UIFlexibleSpace, followed by two buttons.
I'm a beginner with Objective-C and I have to create something similar to the one on this image but I don't know what are the components on the top bar.
Thanks in advance for any help
It looks like a navigation bar but I think a customized view with customized buttons are what it actually is.
how can i add a dropdown box (html select tag) in my iPhone application?
I think you cannot have a drop down list in the iphone.Instead of that it has the UIActionSheet.If you have more options like greater than 8 the UIActionSheet will have its own scroll and alert looks like table and the view will get an awesome look.Thats the only option we have.If you anything or if i am wrong just let me know
Thanks
You can create a custom combo box control. I have done this in one of my projects. You can do something like this. Create a ViewControlle with tableView in it. Make it's frame smaller. Add it's view on the view where you want to display combo. On tap of a button that looks like down arrow display tableView with some animation starting frame should just below the combo button.Hope it helps. First try this then if still you are unable to do let me know.