Sr Ionic / Angular Developer @ object studio
Open to Corp to Corp so long as we’re directly engaging with you personally.
View ArticleHow to build an Android APK file without using Android Studio in a Capacitor...
cd .. is the command to change directories to the parent of the current directory. The “…” indicates the parent directory.
View ArticleMaking friends out of TypeScript and Vue Developers
For vuex…I wrote about that here… Ionic Blog – 24 Feb 21 Managing State in Vue with Vuex - Ionic Blog Every app at some point will need to tackle one of the most contentious subjects in front end...
View ArticleMaking friends out of TypeScript and Vue Developers
Is there an easy way of using untyped Vuex (store/index.js) within Typescript components? I’ve watched Maximilian’s Ionic Vue tutorial and this pure js way surely is easy enough but it threw type...
View ArticleMaking friends out of TypeScript and Vue Developers
So I just want to point out…you are spending a lot of time trying to avoid typescript or learn ways to not use. Vs the small amount of time it can take to learn typescript and apply it. As I state in...
View ArticleStatus bar in Ionic keeps flashing or stays white
Hi SOrangenxt, we are experiencing the same problem with a few of our zebra devices. Did you find a solution for the problem?
View ArticlePaginate API data in Ionic App
Mmm, not really something specific to Ionic, but since it looks like you’re using Express, could out this pagination middleware github.com expressjs/express-paginate Paginate middleware. Contribute to...
View ArticleMaking friends out of TypeScript and Vue Developers
Thanks Mike, I’ll check your post and will eventually try to apply what I have learned. For my last project I just really lacked any time to properly learn the used tech stack. Regarding any I had...
View ArticleCan i edit videos with ionic
Not something specific to Ionic…but if you’re building a native app, there’s probably a native video editing plugin with capacitor you could use?
View ArticleHow to display array of react components in matrix
found the answer with below code change <IonRow className="ion-align-items-baseline ion-no-padding ion-no-margin" > { Data.map( (item) => <IonCol className="ion-no-padding ion-no-margin"...
View ArticleExternal Script does not execute (iOS)
If you (or the script) don’t provide a protocol, then the app protocol is used, and Capacitor apps use capacitor as protocol. So urls like //www.radiojar.com become capacitor://www.radiojar.com, and...
View ArticleWith Local Notifications, can I set the badge icon on iOS and Android?
In local notifications plugin there is a smallIcon configuration option that can be used to set a global icon for local notifications. If you want to set it per notification, the Notification types...
View ArticleHow to handle in cordova plugin
Capacitor doesn’t run cordova hooks. You can check scripts/hooks/afterPluginAdd.js code, see what it does and try to do the same.
View ArticleiOS Status Bar and Home Indicator styling
The native bars are transparent, that blue color comes from your CSS, so yeah, it’s possible to change the color, you just need to figure out which CSS value to change.
View ArticleArgument of type 'Event' is not assignable to parameter of type 'CustomEvent'
Hi there, We are updating our app to use the latest ionic libraries and are getting the the following error during compilation – Argument of type 'Event' is not assignable to parameter of type...
View Article[iOS] issue of capacitor://locahost
You can’t, you have to change it on the server. If you can’t change it on the server because it’s not yours, you can use a proxy or a plugin that uses native connections.
View ArticleHow to safely delete duplicate packages?
I think it will be regenerated if you remove android/.idea/modules.xml, or android/.idea/workspace.xml or the whole android/.idea folder
View Article[Discussion] Publishing apps in the app stores?
Ionic is all about building “web-first” apps, so we’re definitely fans of building PWAs. Personally, whether you should publish your PWA in the app stores really depends on your situation. The web...
View ArticleHTTP request not working in iOS sim
WKWebView enforces CORS, so you have to configure your server to allow access from capacitor://localhost urls. If I enter this url in your app https://get.geojs.io/v1/ip/country.json?ip=8.8.8.8, it...
View ArticleUnable to install "cordova-plugin-ms-adal" Ionic 4 - IOS
The plugin is unmaintained, it needs to be updated to not use requireCordovaModule internally. You can downgrade cordova CLI to version 8, but I don’t recommend it. If you use that plugin, you should...
View Article