[web2py] Re: Web2py mobile app using Kivy

2017-10-12 Thread Leonel Câmara
I haven't done mobile in a while. But yes I've done several using cordova/phonegap quite easily. There's no reason why kivy or others like flutter won't work well since this is all about calling webservices that are standard and work with any programming language or framework. The advantage of

Re: [web2py] Re: Web2py mobile app using Kivy

2017-10-11 Thread Matan Ben Moshe
Hi All, Did someone try the suggested solutions here? Kordova or any other one? Is it working? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You receiv

Re: [web2py] Re: Web2py mobile app using Kivy

2015-06-04 Thread Jason (spot) Brower
QT is ok if you can code in c++ but kivy works in python and using qml a powerful language to create your interface. Cordova is great if you want a webpage in your phone. I don't like how slow it is. On Fri, Jun 5, 2015 at 7:25 AM Gary Cowell wrote: > This UI independence is the most important

Re: [web2py] Re: Web2py mobile app using Kivy

2015-06-04 Thread Gary Cowell
This UI independence is the most important thing, actually (for me) There's the 'Visual Basic' way of coding, where each control component will contain the business logic for the thing that happens when you press the button. I see this so often. But better, is to have a module, or modules, that

[web2py] Re: Web2py mobile app using Kivy

2015-06-02 Thread Joe
Thanks Anthony, yes, I have a Web2py app. So, it's possible to wrap the Web2py web app in Cordova? Then, that makes much more sense than Kivy. I will have to look into this to try to figure out how to do it. On Tuesday, June 2, 2015 at 8:04:15 PM UTC+8, Anthony wrote: > > On Tuesday, June 2, 2

[web2py] Re: Web2py mobile app using Kivy

2015-06-02 Thread Anthony
On Tuesday, June 2, 2015 at 7:15:56 AM UTC-4, Joe wrote: > > Thanks Leonel, my app is a pretty complex interactive application to teach > kids to read. I am using database, and Python code, all developed in > Web2py. It seems that Cordova might not work for this app. > You said you already have

[web2py] Re: Web2py mobile app using Kivy

2015-06-02 Thread Joe
Thanks Leonel, my app is a pretty complex interactive application to teach kids to read. I am using database, and Python code, all developed in Web2py. It seems that Cordova might not work for this app. On Tuesday, June 2, 2015 at 5:36:23 PM UTC+8, Leonel Câmara wrote: > > I would suggest cordov

[web2py] Re: Web2py mobile app using Kivy

2015-06-02 Thread Leonel Câmara
I would suggest cordova, you can use pretty much the same skills you already have, and if most of what your app does is display content it downloads from the web it's pretty much one of the best choices. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.

Re: [web2py] Re: Web2py mobile app using Kivy

2015-06-02 Thread Joe
Thanks! So, you would recommend QT instead of Kivy? Also, can you please expand on what is the best approach, in this case, to abstract the interface with Web2py? On Tuesday, June 2, 2015 at 7:36:09 AM UTC+8, Encompass solutions wrote: > > The best thing to do here is abstract your interface. W

Re: [web2py] Re: Web2py mobile app using Kivy

2015-06-01 Thread Jason (spot) Brower
The best thing to do here is abstract your interface. Web2py does a fine job of it. Most likely your wanting to make the app and then communicate over json objects in post requests. With Kivy you should be able to make something pretty interesting and you can use the same skills you have learned i

[web2py] Re: Web2py mobile app using Kivy

2015-06-01 Thread eric cuver
good question I am also interested in the answer Le lundi 1 juin 2015 16:19:56 UTC+2, Joe a écrit : > > I developed a web app with Web2py. It works great, I thing Web2py is > fantastic. > > I want to create a mobile app from my web app and I am not sure what is > the best approach. > Does anyone