UITableView like look using PhoneGap

I want to create an application with a standard list view and a detailed view, which we get with a UITableView. I am using PhoneGap to create an application. Although I know that PhoneGap is more of an API that allows you to create your own applications using HTML5, etc.

How to create a simple list / detailed view and integrate with PhoneGap?

Thanks.

+4
source share
2 answers

You should use some interface, such as JQuery Mobile, for your case this topic exists: http://taitems.github.com/iOS-Inspired-jQuery-Mobile-Theme/

There are many user interface interfaces: JQ touch, Sencha Touch, Jo, ... you might also want to see them.

Good luck

+6
source

PhoneGap has the ability to integrate your own component into your library, but to display a simple list / detailed view, I don’t think you need to create your own component.

But if you really need it, here is the link, hope this helps

How to create your own plugin for PhoneGap

0
source

Source: https://habr.com/ru/post/1383193/


All Articles