It is recommended that you display the details of this item in a modal. The UI SDK ships with a storyboard for your convenience (CatalogItem.storyboard) so that if you wish to use our recommended flows from here all the way to making a booking, you can simply just use it as a reference in your own storybaords inside Xcode's Interface Builder. If you are not using storyboards, you can always instantiate the flow via code like below.
It is recommended that you display the details of this item in a separate Activity. The UI SDK ships with an Activity for your convenience (CatalogItemDetailsActivity) so that if you wish to use our recommended flows from here all the way to making a booking, you can simply just start that activity inside yours using the designated Intent like below
Intent i =TravelerUI.getCatalogItemDetailsIntent(catalogItem,this);startActivity(i);
If you choose to use our recommended flow for the details screen and onwards, you can stop right here as our UI SDK will handle the rest all the way to booking and placing an order; however if you like to implement your own cusom UI and flow, you will be required to make a few more calls and collect more information from your user.