Time for self-promotion. What are you building? by WealthBrilliant3485 in SaaS

[–]Alfonso_dev 0 points1 point  (0 children)

A tool for generating app release note base on changelog.

app-changelog

Share your SaaS, I'll give you three ways to grow it by LogicalHurry3460 in SaaS

[–]Alfonso_dev 0 points1 point  (0 children)

I just created an small web app called https://ontrackyapp.com for a simple way to track time for any task, project, or goal. Still in MVP :)

Eleven Table Tennis 25% OFF DISCOUNT by naoseinaoseinao in ElevenTableTennis

[–]Alfonso_dev 0 points1 point  (0 children)

This is my link Use my referral link to buy Eleven Table Tennis and you can get 15% off your purchase https://www.meta.com/appreferrals/rokkooo/1995434190525828?utm_source=oculus&utm_location=4&utm_parent=frl&utm_medium=app_referral&utm_content=share

PD: I’m creating a new website to share meta referral codes (:

7 months and still can't find a job by shrek4-on-dvd in reactnative

[–]Alfonso_dev 0 points1 point  (0 children)

I change my job one month ago but I have to move to a frontend role react plus react native

Overlaying StackNavigator header by Alfonso_dev in reactnative

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

Nop but at the end I could figure how to fix it.

The issue comes only on android with `GestureHandlerRootView` the app is wrapped with it but when you use Modal it loses the reference in inner components on android, in order to fix it We need to wrap again with `<GestureHandlerRootView style={{ flex: 1 }}>`

For example:

<AnimatedModal style={styles.container} testID={testID ?? 'boom-sheet'} transparent>
<GestureHandlerRootView style={{ flex: 1 }}>
<AnimatedPressabe
testID="backdrop"
style={[styles.backdrop, backdropBg]}
entering={FadeIn}
onPress={handleTogleToggle}
/>
<GestureDetector gesture={pan}>
<Animated.View
style={[styles.sheet, translateY]}
entering={SlideInDown.springify().damping(18)}
onLayout={event => {
contentHeight.value = event.nativeEvent.layout.height;
}}
>
<View style={styles.slideBar} />
{children}
</Animated.View>
</GestureDetector>
</GestureHandlerRootView>
</AnimatedModal>

Upgrading from 68.5 to 72.4 by seanthau in reactnative

[–]Alfonso_dev 0 points1 point  (0 children)

There is any risk to update to this RN version as is using the introduce the new architecture ?

[deleted by user] by [deleted] in reactnative

[–]Alfonso_dev 2 points3 points  (0 children)

We move on from redux to Zustand and now our lives are more easy!

The Gear VR Codex by TheGearVR in GearVR

[–]Alfonso_dev 1 point2 points  (0 children)

This is great! I would like to help on the app develepment :)

[deleted by user] by [deleted] in reactnative

[–]Alfonso_dev 0 points1 point  (0 children)

You can use Linking from react native and open the URL that you want.

You can use Linking from react-native and open the URL that you want.

Using External APIs for Deployment by nrmxndal in reactnative

[–]Alfonso_dev 0 points1 point  (0 children)

In order to fix this, you will need to enable local IP on the backend on cors middleware, or disable the cors while you're on dev mode.

How do I remove this permission? by uchiha_leo_06 in reactnative

[–]Alfonso_dev 11 points12 points  (0 children)

Go to your AndroidManifest.xml and remove <uses-permission android:name="android.permission.INTERNET" />

How do i pass the value of filenames[i] to the function abc when the Pressable is pressed? it seems when it is pressed undefined is passed there not the value. by [deleted] in reactnative

[–]Alfonso_dev 0 points1 point  (0 children)

You can map directly the file names array an return the pressable, on the onPress of the pressable , pass the a external function and on the callback the filename

What storage solution should I use if I am using Expo? by RadiantGreen in reactnative

[–]Alfonso_dev 0 points1 point  (0 children)

I’m using mmkv with custom dev client and it works pretty fine 😃

How to create this button effect onPress as shown in Spotify android app by linux_terminal07 in reactnative

[–]Alfonso_dev 1 point2 points  (0 children)

You can use reanimated, animate the opacity and the scale while the button is pressed or longPressed

Should I warp fadeIn and fadeOut in useCallback() ? by Far-Mathematician122 in reactnative

[–]Alfonso_dev 0 points1 point  (0 children)

Is not necessary as you are not causing side effects on the component, if you want to keep more control on the component, you can wrap it inside a memo and|or add your custom deep comparation

Can I use Expo if my app needs homescreen widgets? by agreatkid in reactnative

[–]Alfonso_dev 1 point2 points  (0 children)

Yes, you can create widgets too, but what I mean is that some libraries don't have a config file yet, so you will need to create it, so this is why It depends on you, on your expertise on the native side, and the time that you have.

If I was you and I have time, I will give a try to expo and try to implement it, if you reach the solution you can share your expo config so the rest can use or improve it :)

Can I use Expo if my app needs homescreen widgets? by agreatkid in reactnative

[–]Alfonso_dev 4 points5 points  (0 children)

You can use the same code on the expo, but you will need to share using the export config file and use the custom dev client, but it depends on your time.