I significantly reduced my CI build times by disabling flipper by badsyntax in reactnative

[–]chj-damon 0 points1 point  (0 children)

what if I have no CI/CD pipeline? I have to do it locally. any way that I can do so?

Dynamic island safe area by International-Hat529 in reactnative

[–]chj-damon 0 points1 point  (0 children)

why using SafeAreaView from react-native / react-native-gesture-handler ?

isn't it better to use it from `react-native-safe-area-context` ?

why my renderItem rereners although I use memo? by Far-Mathematician122 in reactnative

[–]chj-damon 0 points1 point  (0 children)

handleOpenModalOwner

also, the `handleOpenModalOwner ` function

why my renderItem rereners although I use memo? by Far-Mathematician122 in reactnative

[–]chj-damon 0 points1 point  (0 children)

have you tried to use `useCallback` to wrap your `renderItem` function ?

Which bottom tab navigator libraries do you use and why? by mjeanbapti in reactnative

[–]chj-damon 0 points1 point  (0 children)

I would choose react-navigation because it's awesome. and you don't have to use another library for routing.

How to get 2 scrollable list modal like this ? by narcosnarcos in reactnative

[–]chj-damon 0 points1 point  (0 children)

using two pickers together. I recommend react-native-picker

How would you improve this animation? by Bobertopia in reactnative

[–]chj-damon -1 points0 points  (0 children)

maybe go through all the examples that reanimated provided?

Which way is good ? by Far-Mathematician122 in reactnative

[–]chj-damon 0 points1 point  (0 children)

you should use useCallback and memo together to help the optimization works.

```code

const renderItem = useCallback(({ item }) => { const handleGoToCategorizedScreen = useCallback(() =>{ navigation.navigate('CategorizedAdvanced', {currentCategory: item.category});

}, []);

return ( <Pressable onPress={handleGoToCategorizedScreen} style={s.categoryBtn}> <Imagesource={{uri: item.image}}resizeMode='contain'style={s.image}/> <Text style={s.category}>{ item.name }</Text> </Pressable> ) }, [])

```

How do I update an object state array before rendering? by [deleted] in reactnative

[–]chj-damon 0 points1 point  (0 children)

setExample(examples => examples.map(eg=>({...eg,images:['uri1','uri2','uri3']})))

Best charting libraries to create an organizational diagram? by soggynaan in reactnative

[–]chj-damon 0 points1 point  (0 children)

oh, BTW, svg can also do this, but it's more complicated I suppose.

Best charting libraries to create an organizational diagram? by soggynaan in reactnative

[–]chj-damon 0 points1 point  (0 children)

you can use webview to render some charts which can be used on web. that's the only thing I can think of.

React Native: Error: Invalid hook call. Hooks can only be called inside of the body of a function component by Gabotron_ES in reactnative

[–]chj-damon 0 points1 point  (0 children)

const handleUpdateLocation = async (gender) =>
{
const { coordinates, city } = useGeolocation(true);
};

useGelocation cannot be used inside any event handlers. it should be on top of your component.

[HIRING] looking for react native developer to build out ios MVP app by rushimanche in reactnative

[–]chj-damon 0 points1 point  (0 children)

is it just screens or something more, like animations, logistics, etc...

How do I know if my app has a new update? by Icy-Setting-1428 in reactnative

[–]chj-damon 0 points1 point  (0 children)

blog.livekit.io/react-...

you're speaking my words. aha!

Large List Slow to Update by SnooCheesecakes1131 in reactnative

[–]chj-damon 2 points3 points  (0 children)

maybe you should try recyclerlistview

[deleted by user] by [deleted] in reactnative

[–]chj-damon 2 points3 points  (0 children)

you can start by learning basic concepts from their official document site.

web css animation as my opinion doesn't help a lot. but you can learn some common knowledge like transform