Пікірлер
@nazrulhussain780
@nazrulhussain780 16 күн бұрын
Can you provide code where i can search text with a search text box and highlight the searched text in the viewed pdf document.
@diegoulisesmirelesmarcial6783
@diegoulisesmirelesmarcial6783 24 күн бұрын
Hay alguna forma distinta por si son ya muchas vistas? una app ya grande y con muchos textos
@paraprogramar-jv7nn
@paraprogramar-jv7nn 27 күн бұрын
thanks broh to make so like easy! a pesar de no hablar ingles muy bien entendi todo!
@bernardsamapoh3619
@bernardsamapoh3619 28 күн бұрын
This tutorial has solved my react responsive challenge. Many thanks
@GiantSquid13
@GiantSquid13 Ай бұрын
This works well when the components is on the same page. How do you keep track of the count across pages??
@lamb2144
@lamb2144 Ай бұрын
OMG THANK YOU SO MUCH YOU HELPED ME !!!! IVE BEEN STUCK ON THIS PROBLEM FOR 2 HOURS
@ugurarslan5673
@ugurarslan5673 Ай бұрын
great. thank you
@jorgebrunetto4132
@jorgebrunetto4132 2 ай бұрын
excelente resumiu tudo que eu precisava em um unico video, animação, texto e efeitos.
@djairbatista6311
@djairbatista6311 2 ай бұрын
thank you very much! God bless you
@calebakpomughe6566
@calebakpomughe6566 2 ай бұрын
how do i input submenus into this and to make the submenus look different for both mobile and desktop
@saishamv.g1515
@saishamv.g1515 2 ай бұрын
Thanks from chennnai
@wassimmodric6436
@wassimmodric6436 3 ай бұрын
Is the raspberry pi 3 work good with openCV or i need to buy tje raspberry pi 4 ?
@ikebelida1528
@ikebelida1528 3 ай бұрын
NICE🎉
@khaleda.s761
@khaleda.s761 4 ай бұрын
Literally better than any shit third party package out there. Thank you!
@GooseGumlizzard
@GooseGumlizzard 24 күн бұрын
for real, they are all garbage
@eddie_writes96
@eddie_writes96 4 ай бұрын
Thanks! Muchas Gracias!
@bigbangriders7177
@bigbangriders7177 4 ай бұрын
Awesome.....:)
@Chiby
@Chiby 4 ай бұрын
hey I tried this and I'm getting this error Cannot read properties of undefined (reading 'length') Products.length
@MaheshRajan-ly7vm
@MaheshRajan-ly7vm 4 ай бұрын
Where should we use AsyncStorge to store the selected language?
@abduzarkhabib5978
@abduzarkhabib5978 5 ай бұрын
but how can i create new empty react file? sorry imma newbie in this:)
@CHEloveg22
@CHEloveg22 5 ай бұрын
can it automatically use same language that set in device system?
@user-ew9ep3pp2j
@user-ew9ep3pp2j 5 ай бұрын
Thanks for this video. 😍
@user-dm2kl7dw2h
@user-dm2kl7dw2h 5 ай бұрын
u even didnt click on some button....
@sangamsaini138
@sangamsaini138 6 ай бұрын
thanks for make this video
@satyamkumar-ow1nh
@satyamkumar-ow1nh 6 ай бұрын
should you use context api in this project ?
@jimenakatu1178
@jimenakatu1178 6 ай бұрын
Muchas gracias!
@Ber-rs6mq
@Ber-rs6mq 6 ай бұрын
Thank you very much
@medo1pr
@medo1pr 6 ай бұрын
Thank you very much ❤
@benarcher372
@benarcher372 6 ай бұрын
Really nice, thank you! I will try this with some 'asyncstorage' to persist the language chosen.
@intensity9523
@intensity9523 6 ай бұрын
great tutorial! thank you a lot for helping me fix this in my page
@rico5424
@rico5424 7 ай бұрын
I noticed that the hamburger menu does not disappear when clicked on
@ka61er
@ka61er 7 ай бұрын
lmao react native look terrible with syntax, with this, android - ios native and flutter handle code like 3 minutes
@user-if6oz4sq7m
@user-if6oz4sq7m 7 ай бұрын
You saved my day!
@user-mo7gx4ze1r
@user-mo7gx4ze1r 7 ай бұрын
thank you so much
@sekantungkentang
@sekantungkentang 7 ай бұрын
is it necessary to create the locales directory on the root?
@DanielDemesmaecker
@DanielDemesmaecker 8 ай бұрын
I've seen a lot of issues with your video, bad practises, redundant code, so on, don't get me wrong, I still like the video, but evryone is boosting you up to heaven, I say your style still needs some work Like first checking in a if statement whether a string is not empty and in an other if statement checking if it is?
@DanielDemesmaecker
@DanielDemesmaecker 8 ай бұрын
NOT: if (matched.length > 5 && event.target.value !== ""){ matched = matched.slice(0,5); }else if(event.target.value === ""){ matched = [] } BUT: if (event.target.value === ""){ matched = [] }else if(matched.length > 5){ matched = matched.slice(0,5); } EVEN CLEANER: event.target.value === "" ? matched = [] : matched.slice(0,5); Since the slice method uses the lenght of the array when the index is greater, you don't really need to check if the length is greater. You first check your lenght and then you make sure it's not empty, if there aren't more then 5 results or the string is empty, you check again now to make sure it is empty. I just check if it's empty, I don't need to check anymore if it's not empty, cause by the time the code get's executed I already now it isn't Your options also could be rewritten: let options = ctx.interval === '1D' ? OPTION_HOUR_MINUTE : ctx.interval === '1W' || '1M' ? OPTION_MONTH_DAY : OPTION_MONTH_YEAR; And how about your names? They should be descriptive yes, but also easy , when everthing starts with selected- or searchedCurrency, that's everything but, the same for giving the same names and just placing underscores after them Finally you always refer to the finish product to explain, it would be better if you show what you're developping, your missing imports and exports I already notice, yet it takes you more then half an hour in the video to notice. I'm a java developer, so I kind of know what I'm doing, but someone who has no experience get's stuck and dosn't know what to do. Same for packages, you just start, expecting us to know what packages to install. I haven't seen you install router-dom for example? Axios, yes later on, cause you forgot youself, I had it already installed ;p If you show in the video what you're developping, you would have noticed the issues sooner
@mahnazataie1116
@mahnazataie1116 8 ай бұрын
Why I have an error with pressing the button and says can not read properties of undefined (reading class list)
@user-ub8up9uo8s
@user-ub8up9uo8s 8 ай бұрын
hi i hope your good bro...thats amazing project! can i put this project in my resume? im joinur front end developer :)
@index-zero
@index-zero 8 ай бұрын
Yes of course 🙂
@MinhPham-cf5pl
@MinhPham-cf5pl 8 ай бұрын
but how about dynamic data?
@thequantum-plator
@thequantum-plator 8 ай бұрын
thank you
@oliveira1820
@oliveira1820 8 ай бұрын
Thank you for this tutorial.
@PatrickBateman32
@PatrickBateman32 8 ай бұрын
Yo please help out at 63% it canceled and gave a long list of errors and whatnots but the main thing is [makefile:182: all] Error 2. Ive tried redoing the make command and that pip upgrade thing you said
@index-zero
@index-zero 8 ай бұрын
My bad for the crappy video quality - I only spotted it after I'd finished editing. 😔 So, if you can't stand the video, no worries! You'll find the source code link in the description below.
@theonewheeler
@theonewheeler 8 ай бұрын
THIS DOESN'T WORK, ITS TOTALLY BROKEN, WHEN YOU GO DOWN TO MOBILE VIEWS THE WHOLE THING DISAPPEARS, UNUSABLE!!!! WASTED 6 HOURS ON THIS SHIT.
@74n3r
@74n3r 9 ай бұрын
so good but when app close its could be default settings .. we have to do using redux with langs.
@index-zero
@index-zero 9 ай бұрын
If you dont want it turns back to default language you could store the selected language using Asyncstorage
@firebout7675
@firebout7675 9 ай бұрын
really thanks a lot, i was stuck on a project, unable to add the pagination feature. This video made it look like a piece of cake. earlier i was doing it in the backend, this React Library is really helpfull
@elif-gazioglu
@elif-gazioglu 9 ай бұрын
why didn't show the screen. you just write and after that show us...
@yasuda1618
@yasuda1618 9 ай бұрын
Great! Thanks for helping
@goraghosh4581
@goraghosh4581 9 ай бұрын
Thanks! Great!
@darshikatalaviya5647
@darshikatalaviya5647 10 ай бұрын
great tutorial thank you so much
@visheshsharma8548
@visheshsharma8548 10 ай бұрын
thanks bro it helping a lot, how can we do it for right to left languages
@index-zero
@index-zero 10 ай бұрын
It will be same