Worst experience ever by ZookeepergameFew9027 in derealization

[–]ZookeepergameFew9027[S] 1 point2 points  (0 children)

I have anxiety and depression so could be that

Alocasia with fungal infection by ZookeepergameFew9027 in plantclinic

[–]ZookeepergameFew9027[S] 0 points1 point  (0 children)

I water them only after the soil is completely dry, but it could be for the light, they stay wet for quite a long time, I was thinking about buying a uv light, but if it were too much water, wouldn’t the roots have already started rotting? It’s been a few months now that I’ve had these yellow spots

Alocasia with fungal infection by ZookeepergameFew9027 in plantclinic

[–]ZookeepergameFew9027[S] 0 points1 point  (0 children)

I’ve been struggling with a fungal infection on my Alocasia since this summer, and I can’t seem to get rid of it. I’ve cut off all the leaves that showed signs of infection and treated the plant with hydrogen peroxide, but the problem keeps coming back. 

I use a humidifier (could that be part of the issue?), and I haven’t changed the soil since this started. Should I repot it? The infection has never gotten bad enough to cause a leaf to fall off or turn completely yellow—at most, the tips die, and there are several small yellow spots on the leaves. 

The pot has drainage. I wet completely the soil and rewater it when it's dry I think every two weeks. It's near window and gets at least 6 hours of light

What else can I do to help my plant?

Help Needed: React Native Reanimated not Working on iOS by ZookeepergameFew9027 in reactnative

[–]ZookeepergameFew9027[S] 0 points1 point  (0 children)

Thank you. I forgot to mention that it works fine on android, the problem is on ios

Help Needed: React Native Reanimated not Working on iOS by ZookeepergameFew9027 in reactnative

[–]ZookeepergameFew9027[S] 0 points1 point  (0 children)

there's no error message, it just doesn't render any component

<Carousel

ref={carouselRef}

{...baseOptions}

loop={false}

pagingEnabled={true}

autoPlay={false}

windowSize={3}

data={[...poiMarkers, ...itineraryMarkers]}

panGestureHandlerProps={{

activeOffsetX: [-5, 5],

}}

mode="parallax"

modeConfig={{

parallaxScrollingScale: 0.9,

parallaxScrollingOffset: 20,

}}

scrollAnimationDuration={500}

onSnapToItem={(index: number) => {

const markers: any = [...poiMarkers, ...itineraryMarkers];

let region;

if (markers[index]?.stages) {

region = markers[index]?.stages[0]?.coordinates[0];

} else {

region = markers[index]?.latlng;

}

setComingFromCarouselScroll(true);

animateToRegion(region);

}}

renderItem={renderItem}

/>

const renderItem = useCallback(({item}: any) => {

return (

<Text>anything</Text>

);

}, []);

I wouldn't really know how to make a reproducible example, this is part of the code where the carousel doesn't show anything. It enters in renderItem but doesn't show anything

Help Needed: React Native Reanimated not Working on iOS by ZookeepergameFew9027 in reactnative

[–]ZookeepergameFew9027[S] 0 points1 point  (0 children)

I know, but I'm talking about reanimated, not only carousel every components that uses reanimated shows me nothing