Mutating @Input object in child component
This all depends on the end goal really. With my approach, I look at it as a chance to normalize data being passed in. You could trigger some side-effects or just modify some finalized results. The...
View ArticleHow to evenly spread 's across a page?
I have 3 ion-cols below, with an ion-button in each. As you can see from the image, they are not evenly spread across the screen: Here is my current HTML: <ion-row class="bottom-bar">...
View ArticleIonic 4: ion-content "Always show scrollbar"
Not sure of any way to force the scrollbar to always be visible with just CSS/JS. I know there are some system settings that for you machine that you can toggle, but there’s nothing from a browser’s...
View ArticleUnable to create record in firebase collection using my ionic app
I am trying to create a record in firebase using my ionic app. I have already successfully connected to the firebase app because I am using auth() to log in users already. But now, I am not able to...
View ArticleHow to change ion-select dropdown
Is there a way to change this image https://imgur.com/a/f8HVdlz (edited) on ion-select (edited) to something like this https://imgur.com/a/GOihXRK (edited) ? I don’t even think it’s an image, it looks...
View ArticleHow to change ion-select dropdown
Mmm, not really. Since that arrow is part of shadowDOM, there’s no public API to change it. Honestly, I think it is better to keep the icon, as it follow consistent UI patterns that have been...
View ArticlePlugin_not_installed error on Android for FingerprintAIO
Yes, you are correct, I have checked and the plugin is not being installed into the Android platform. Unfortunately I do not know why it is being skipped when I add the plugin.
View ArticleIonic 5 upgrade issue
I did… Now it’s working. After fiddling around with aot options and imports, and then I thought reverting all of my changes, I’m not sure what made it start working.
View ArticleScroll to top in ionic
This work fine for me, thank, this is my code import { IonSlides, IonSelect, AlertController, IonContent } from '@ionic/angular'; ... @ViewChild(IonContent, {static: true}) content: IonContent; .....
View ArticleCan't get 0.0.9's ion-vue-router to work with tabs
here is an older project - need to go back through and update alot of the vue stuff - ionic-meetup-vue2 Let me know if you get blocked
View ArticleHow to evenly spread 's across a page?
You could try using “Flex” on the ion-row add a class with display: flex and for each ion-col add the property flex: 1 on your CSS.
View ArticleHow to evenly spread 's across a page?
Here is mine. Seems only difference is using ion-grid as outer instead of ion-row, and the css custom properties as provided. I am assuming v5. Grid Css Custom Properties <section>...
View Articletransform(CSS) affects button click event de mi App
When using transform: rotate ( rot * 1deg) translate ( circle-size / 2) rotate ($ rot * -1deg); To create a circular menu I find that now the buttons do nothing when pressed. If I comment on this part...
View ArticleHow to change ion-select dropdown
Does it HAVE to be an ion-select? There are a few options using CSS, Angular Material etc, at least if nothing else for ideas on the how. some are Nasty tricks. Simply pointing you to some ideas,...
View ArticlePlugin_not_installed error on Android for FingerprintAIO
I have resolved this, the plugin has been silently updated to require Cordova Android v8.0.0+. To use the current version of the plugin, update the android platform or install an old version of the...
View ArticleNeed an opinion to Angular-Resolver and Ionic
nvahalik: We have a fairly large project which does not use any Resolvers. While I suppose one can make an argument for why they could be used, using Observables and introspecting the parameters that...
View ArticleComo alterar uma imagem dinamicamente?
Try this. https://stackoverflow.com/questions/49671139/change-img-src-dynamically
View ArticleHow to use ToastController in Ionic 4?
I guess I’m shouting into the wind here, but I’ll try one more time: if you don’t completely understand what async and await do, don’t use them at all. They don’t allow you to do anything that can’t...
View ArticleLarge iOS build size issue
I’ve recently released an Ionic 5 app for a client, and while the android app is a cozy 9 mb file, the iOS app seems to be 74 mb if the app store is reporting that right. I know that iOS apps tend to...
View ArticleIonic Tabs not loading content of tab
Hello, I have been trying to work out the simple ionic tab component since a few days. I have a screen were the the user has 3 tabs on the bottom slot. On clicking the tabs, the ngOnInit function...
View Article