Questions tagged [hybrid-mobile-app]

A hybrid mobile app is an web application built with web technologies (HTML, JavaScript, CSS) that is then "wrapped" in native device code to extend the functionality and availability of the app.

A hybrid mobile app is an web application built with web technologies (HTML, JavaScript, CSS) that is then "wrapped" in native device code to extend the functionality and availability of the app. This shell of native code allows the developer to bridge the gap between JavaScript and native functionality, allowing your web application to access device features (like the Contact list, Camera, accelerometer, etc.) that otherwise would not be possible. Wrapping your code in native code has the added benefit of greatly increasing your app's availability and marketability, since now your web app can be submitted to various app stores.

Many different projects exist for creating native apps, including Apache Cordova (formally known as PhoneGap), Titanium SDK, and Sencha Touch.

2363 questions
0
votes
1 answer

React Native Adding array of Picker

I wanted to add multiple pickers in React Native. I have a button when clicked a new picker should appear. I also want to store values of selected items of each picker in an array. I don't know how to make this possible. The callback of Picker…
Devakanta Rao
  • 105
  • 2
  • 10
0
votes
1 answer

I need slider for Android like slider in Playstore

I am about to build a hybrid Android application. I need a horizontal slider like a slider in Playstore which is easy to scroll right and left. I tried using slick.js but it is still not as easy as the slider in Playstore. Any one know what slider…
ana
  • 118
  • 1
  • 13
0
votes
1 answer

Creating a google drive folder on customers account

I am working on an application which requires the automatic creation of a folder on customer's Google Drive accounts as opposed to them creating this themselves. I will have their permission to do so and won't have access to this folder. Ideally…
0
votes
1 answer

ion-textarea push the ion-header all the way to the top and hide it

I am currently working with the latest version of ionic, I am using a textarea in data entry page. after the user clicks on the textarea the keyboard shows up and whole page goes up. The issue is it also push the header and makes it hidden. I the…
ali
  • 1,023
  • 2
  • 14
  • 38
0
votes
1 answer

iOS app icon using ionic command

I have auto generated app icon using "ionic cordova resources ios" command.The icon generated for iOS having black border around the app icon and not looking properly .Do we need to manually create the icons with recommended iOS app icon sizes? .…
Abhee
  • 73
  • 1
  • 9
0
votes
1 answer

Whitelist self-signed SSL cetificates in an app?

The scenario is like this, we have a mobile app, which communicates with our backend server over https, the app has native modules and HTML5 parts embeded with webview/Cordova, so some of the https communications are from native calls while others…
hellopeach
  • 924
  • 8
  • 15
0
votes
1 answer

How to capture photo when a face detected smiles using Ionic?

Using Ionic, is it possible for me to be able to capture an image and the trigger would be whenever the face smiles? I am looking for suggestions, any resource materials that I could get using Ionic.
0
votes
1 answer

PayPal Express Checkout - PayPal button not getting rendered on iOS

I am building a hybrid application using cordova. Also I am using Express checkout to integrate PayPal with the application referring this example This code is working well on Android but not working on iPhone. The PayPal button is not getting…
Aashutosh Sharma
  • 1,483
  • 2
  • 17
  • 29
0
votes
1 answer

How to change attribute "name" of ion-input when its value changes?

I'm building an hybrid app using Ionic3+AngularJS, and I'm stuck on this: I have an input like this: When the user changes the value of this input, I need that the…
0
votes
2 answers

disable bouncing effect of ios in ionic 3

I have added scrollAssist and autoFocusAssist property in app.module.ts. However it works only for android not for iOS. how to disable bouncing effect of ios in ionic 3? IonicModule.forRoot(MyApp,{scrollAssist: false, autoFocusAssist: false});
Abhee
  • 73
  • 1
  • 9
0
votes
0 answers

Ionic pass value from app.component.ts to remote-service.ts using http service

I have created a Dynamic Menu in ionic project and for each menu item I have to pass the API call to fetch the selected page-data. I have passed the ID of the menu clicked from app.component.ts to remote-service.ts. I need to fetch the data from…
0
votes
0 answers

Framework 7 ajax data is not getting populated in template 7

I am developing a mobile application using Framework 7 and Template 7. I am stuck at a point, I am requesting data through ajax request, and successfully able to retrieve the data, however, I am not able to print the data using foreach loop…
0
votes
1 answer

Hybrid Apps: which DB strategy "PouchDB+CouchDB" Or Couchbase Mobile?

Context I'm developing a hybrid/mobile app using Cordova. This app displays content, such as news, magazine articles and weather info that is dynamically generated and delivered via a Web App (self-hosted developed with PHP). In order to decide…
HugoRMR
  • 142
  • 1
  • 3
0
votes
0 answers

why $& can't be used together in html (like $ )

recently in Ionic, I used a statement given below.

Total price

$ {{price}}

after using statements, All ionic commands stop working:- ionic…
Pawan Kumar
  • 508
  • 3
  • 19
0
votes
1 answer

How to continue hybrid audio playing when in sleep mode in IOS Xamarin?

I have a hybrid app developed using Xamarin, using a library I created to mimic just the aspects of MVC I needed, such that I can almost share the same .cshtml files, and model and controller libraries as my web site. It's a language study app, and…
jtsoftware
  • 521
  • 3
  • 14
1 2 3
99
100