cannot use Ionic DevApp with React - ionic-framework

Since Ionic React does not support Cordova, is it possible to use Ionic DevApp to view Ionic App on mobile device? If Ionic DevApp is not supported with React based project, any suggestions on how to view and test Ionic Apps on a mobile device without really publishing the app?

I am currently running into the same issue. There seems to be no documentation from the Ionic team on this?

Related

Ionic 5 + Capacitor with Huawei HMS

I've build an app using Ionic 5 (Angular) and Capacitor. I'm using the Capacitor plugin for Push Notifications. All is working fine on both iOS and Android. However on Huawai phones (P30 and later) things don't work properly.
No device id is obtained and Push Notifications don't work, even the PushNotifications.addListener('registration', async (token: PushNotificationToken) => {}) is not triggered.
Any ideas on what I need to do so that I can maintain one codebase and make it work on both Android "worlds" (Google & Huawei) ?
Thanks in advance,
Chris
Probably the Ionic plug-ins you used are provided for GMS and Firebase so that their capabilities can be directly called in Ionic. Therefore, apps developed by Ionic must directly call HMS capabilities when Google Play services are unavailable.
You are advised to use HMS Ionic plugin to integrate HMS Push Kit in Ionic App. You can get the Push Plugin from here. Please use 5.0.0 version.
Or you can get it from npmjs here.
Update:
If you look for a way which allows you to use both push notifications in the same application by detecting the device type and acting accordingly, you can use G+H solution. Using the G+H approach, you are able to maintain one codebase and decide whether to use GMS or HMS based on the availability of either one.
From: https://stackoverflow.com/a/63337530/13329100

How can i design this page in ionic 4

how can I design that page in ionic 4? I'm still new to ionic. its a bank app I am building with ionic 4, below is the image of the page.
You should start here, https://ionicframework.com/ read through documentation.
Your app looks like a tabs based app so it would be easiest to start with a tabs ionic project.
Therefore, run ionic start myBankAppName tabs --cordova to use cordova as your native cross-platform engine or ionic start myBankAppName tabs --capacitor to use capacitor for the same purpose.
After that consult the relevant components that you need at https://ionicframework.com/docs/components.
Have fun! ;)

Is ionic fast enough for a painting and drawing application?

I want to make a painting and drawing application for both desktop and mobile. Is Ionic fast enough? And does it support webgl?
Ionic will the native web-view/browser (if you build with cordova) on the device so if you can find a website on your device that can do what your wanting to do then ionic can do the same. For instance I have a p5.js + ionic project that works fine.

Can we use phonegap/Ionic hybride app for mobile website

Does phonegap or Ionic framework can be used for mobile website.
Actually I am planing to build mobile app. But confused to pick one of them (phonegap/Ionic).
So, please guide me which one is better. And please guide which one is best for both mobile app and mobile website.
Yes you can. In ionic2 you can do
ionic platform add browser
ionic build browser
Example of website using ionic http://m.stubapp.com/
At first Phonegap is now called Cordova.
Cordova builds an native App using HTML, Javascript and CSS.
With the ionic framework you can Create and Design "Apps" with HTML, Typescript and Sass. Ionic is perfect if you want your App our mobile website to look like an normal native App. Ionic uses Cordova to build the App. I used Ionic myself to build a website.
Ionic gives you the option to build for a browser (ionic build browser).
Then you get the computed HTML, Javascript and CSS.
Please excuse my English, i´m from Germany ;)

Can I run/emulate my Ionic app on my own device?

Is it possible to emulate/run my ionic app on my own device (iOS) without using an Ionic view?
If so, how can I do it? Can I do it with android too?
I'm developing on windows btw.
First of all if you need develop for iOS then you need to do it in iMac. Read the link below:
http://ionicframework.com/docs/guide/testing.html
https://ionicframework.com/docs/v2/cli/emulate/