Nice, Simon! You're proving that almost anything can be made in Ionic. And it's also quite fun to watch, as you act very natural, as always. Great job!
hello simon, it was superb explained tutorial and first of all thanks for making this tutorial i could this from so long but, i got an error in isPlatform called no exporter when i resolve this i got other error - Value of type 'typeof Platform' is not callable. Did you mean to include 'new'? then after to avoid typescript compilation errors i 'll use the new keyword then i got this- An argument for 'zone' was not provided.How can I solve it? thanks in advance!
Can you help me using Native APIs in Capacitor 3 as when I tried it I found the implementation kinda strange as we have to install them separately ... is this the correct implementation? Btw loved your video
Haven't used v3 a lot yet but yes, that's the new design: The plugins are in their own packages so you don't import everything that you might not need but only install the packages your app really needs!
Great Videos! About the basic infrastructure for this kind of App, how long time its can takes loading the data from DB and whats kinda of DB in the back office do you recommend?
You can subscribe to changes of the ScreenOrientation (using a plugin) and then update the Swiper config and call the update() function for it to reload the data!
Helo! I am new to this area and I am doing a job in which it uses ionic + angular with firestore but in my case my problem is in question that I am creating an (IF) in which it checks which page when the user is logging in with it it should be directed to user page or administrator but it is not working, I wanted to know what is wrong! thanks! await this.afAuth.signInWithEmailAndPassword(user.email, user.password) .then(data => { console.log(data); const tp = this.firestore .collection(`users/tipo`).doc(data.user.uid) .get() .subscribe(data => { this.users = [data]}); if(tp == "usuario"){ this.navCtrl.navigateRoot("home"); }else{ this.navCtrl.navigateRoot("admin"); }
Nice, Simon! You're proving that almost anything can be made in Ionic. And it's also quite fun to watch, as you act very natural, as always. Great job!
Thanks a lot David, yes I try to show what's possible :)
Superb . . UI is great..
Can you please make a video on vertical swipe videos like in Insta, TikTok..
Love this awesome video, thanks a lot. Please make full functional BackEnd & FrontEnd IONIC Ecommerce App.
Can you make a video about increase app performance?
Awesome content. I followed to the end and this was really helpful.
Awesome, thank you!
Hey, Master Simon, very good, congratulations, success man...
Thanks André!
Thank you so much simon,,, I watched alot of your videos, and this one is one of the best I seen before.
Wow, thanks!
The UI Looks great!
Ionic just too beautiful, thanks for showing us that, p.d: that console log snippet looks very helpful!
Awesome tutorial brother..More power to you for coming up with such tutorial
More to come!
really enjoying your content buddy!!
Glad you enjoy it!
Great job Simon. I really appreciate that. Anyway, how can i get the foodui api for free. Thanks.
You are welcome!
VERY GOOOD!!
Thank you!
would love to see a "Build a Apple wallet" tutorial. with the slide up cards from the bottom :)
For category slide I recommend to use 'intersection observer'
Thank you Simon. I learned a lot from this video 🙏🏽
My pleasure!
hello simon,
it was superb explained tutorial and first of all thanks for making this tutorial i could this from so long but, i got an error in isPlatform called no exporter when i resolve this i got other error - Value of type 'typeof Platform' is not callable. Did you mean to include 'new'? then after to avoid typescript compilation errors i 'll use the new keyword then i got this- An argument for 'zone' was not provided.How can I solve it? thanks in advance!
Who else liked this before watching?❤️
Great job
Hey you! I did what you doing but when click on img meal won't open details page , very confused a course. sorry !!!!!!!!🙄
Check your routing and console, most likely you just the path wrong :)
Learned some good stuff from this video Thanks!...😊
Is there any way to drag an element from a page, And drop it to another page ? 🙄
How would you drag between pages? Drag & drop on one page definitely works, but how would you build this between different pages?
thanks for the lecture, anywhere we can get the source code?
Link to the tutorial is below the video :)
Can you help me using Native APIs in Capacitor 3 as when I tried it I found the implementation kinda strange as we have to install them separately ... is this the correct implementation? Btw loved your video
Haven't used v3 a lot yet but yes, that's the new design: The plugins are in their own packages so you don't import everything that you might not need but only install the packages your app really needs!
Great Videos!
About the basic infrastructure for this kind of App, how long time its can takes loading the data from DB and whats kinda of DB in the back office do you recommend?
You could use basically anything, your own API, Firebase, Supabase.. all would work great!
@@galaxies_dev Great Simon! Thanks for the tutorial!
Awesome...learnt a lot
Glad it was helpful!
Hye simon can you make tutorial on how to export teachable machine sound model in to our ionic app
i am working on the app in which user claps and the flashlight of the mobile turns on and claps again to turn off
Ion-slider is no longer supported is it possible that you update this video with that change?
Working on a video to cover the Swiper changes!
@@galaxies_dev nice thank you
what is the syntax if my json is a local file and not a url? Thank you
You could still use it the http.get() or directly import it at the top of your file like modules!
hi Simon awesome vid, and ty for the content, can you please as well post the github code? if possible
It's not yet on Github but all code is inside the linked blog post below the video!
Why --padding-top works but -padding-top(With only one dash) does not work , could you tell me the difference between them please!
--padding-top is a CSS variable defined by Ionic, and when you overwrite it the new value is used!
Awesome! ✨
🙌
Awesome!
Thanks!
Can u do a video please on how to get ionic to hide the url bar on scroll in browsers on mobile?
I think that's an open issue on Github so I can't easily create a tutorial around it as it's not fixed :/
@@galaxies_dev and is there no workaround in the meantime?
Sick!!
how do you test the app in your iphone in realtime?
The command I usually run is: "ionic cap run ios --livereload --external --source-map=false" and then deploy it once through Xcode to the device!
hello how can i change SlidesPerview on screen rotation
You can subscribe to changes of the ScreenOrientation (using a plugin) and then update the Swiper config and call the update() function for it to reload the data!
You rock!
Why dont you deploy all these apps made in built with ionic to netlify so that we can preview it live
Yeah might do this in the future when I got time for it, already had the idea in the past as well!
Do more videos
how we can get that emulator?
The one was inside Chrome, the other was my real iPhone mirrored to my screen!
Why uses --pading-top in scss not padding-top
Can't exactly remember the location but usually that means we need to overwrite an Ionic CSS variable for a component!
share the code please
Link is below the video.
'sticky-row' it doesn't work on android
"Ah, lets not talk about it today XD"
lol
23:25 thats what she said
😂
Bro my scrollTop doesn't work!
Ionic connection with mysql explain
give me src please!
Link is in the description!
Helo! I am new to this area and I am doing a job in which it uses ionic + angular with firestore but in my case my problem is in question that I am creating an (IF) in which it checks which page when the user is logging in with it it should be directed to user page or administrator but it is not working, I wanted to know what is wrong! thanks!
await this.afAuth.signInWithEmailAndPassword(user.email, user.password)
.then(data => {
console.log(data);
const tp = this.firestore
.collection(`users/tipo`).doc(data.user.uid)
.get()
.subscribe(data => {
this.users = [data]});
if(tp == "usuario"){
this.navCtrl.navigateRoot("home");
}else{
this.navCtrl.navigateRoot("admin");
}