vic
KPCKevin Powell - Community
•Created by Myra on 4/29/2025 in #help
Beginner React movie list project - Needs suggestions and improvement
Also for the movie card component :
Here u send props like this :
<MovieCard
key={index}
src={Movie.src}
name={Movie.name}
genre={Movie.name}
rating={Movie.rating}
/>
U r method would work but what u can try was just send that array to that component
<MovieCard arr={movies} />
And in MovieCard.jsx
Function Moviecard({arr})
{
if(Array.isArray(arr) && arr.length > 0 ) {
return <div>
{arr.map((item,ind)=>{
return <p> {item.movie} </p>
})
}
</div>
}
}
8 replies
KPCKevin Powell - Community
•Created by Myra on 4/29/2025 in #help
Beginner React movie list project - Needs suggestions and improvement
I'm not that much experienced guy I'm also like learn react 2 months ago , I think yes just do code that feautures work
8 replies
KPCKevin Powell - Community
•Created by Myra on 4/29/2025 in #help
Beginner React movie list project - Needs suggestions and improvement
in your app.jsx
No need for another state as dislike
Do like this
function IncreaseLike(){
setLikes(prev=>prev+1)
}
function DecreaseLike(){
if(likes > 0){
setLikes(prev=> prev -1)
}
}
8 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Thanks for the advice of input
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Yeah man , I will try it out
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Yes I will try that , should I go for animation of lock being unlocked , I heard that too much of animation can slow my react native application
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
With 4 digits in a row rather than 3
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
For numbers
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Or should I try bottom border
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Ok but what about circle box , will that good with rectangle input
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Is 10 ok
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
But I can try for 10
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
I saw many play store applications using this format
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
I know about privacy but it just like normal application ,I feel like it's too much
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Is 6 enough
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
of number
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
But will it match up with that circle boxed
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Hmm that's seems look good
35 replies
KPCKevin Powell - Community
•Created by vic on 4/16/2025 in #help
need feedback/suggestions for UI
Like rectangle ?
35 replies
KPCKevin Powell - Community
•Created by Paul-Emmanuel on 4/12/2025 in #help
Challenge 01- Responsive design by Kevin Powell
Also u should tell what error it is
5 replies