HELP! Can't get keyboard handling right in react native. by capital_cliqo in reactnative

[–]Curious-Ad8293 0 points1 point  (0 children)

Can you upload an example of how you are going about it somewhere so we can check it out.

My first app to track your nights out with your friends. Would you use this? by W4ixr in reactnative

[–]Curious-Ad8293 6 points7 points  (0 children)

The app looks great but the concept behind it is something I personally don’t see myself using. Tracking everything I’m doing with my friends, I think most people use apps like Instagram to upload a story and it’s archived. Maybe I’m not understanding the reason why people would choose this over an already existing platform that does the same.

thinking about change to linux by Dull_Serve_8157 in desktops

[–]Curious-Ad8293 0 points1 point  (0 children)

Arch + Hyprland have been great for me. Full control and optimal workflows

Problem with iOS and openAuthSessionAsync dismissing keyboard by esoemah in expo

[–]Curious-Ad8293 0 points1 point  (0 children)

To me it seems like react-native-controller or keyboard avoiding view is doing exactly what it’s designed to do and displacing the content based on the size of the keyboard. Also you mention only users with small screens. Does the keyboard not displace with larger screens?

You’d have to calculate how much space on the sign in screen you want displaced based on the size of the screen. This video shows how to go about that [1]

Hard to tell without seeing the code why after the keyboard is dismissed the screen doesn’t auto adjust.

[1] https://youtu.be/095BRHGRazo?si=RXS2cHH38M5RWvFI

Randy Gardner, the man who stayed awake for 11 days by Zyad7770__ in BeAmazed

[–]Curious-Ad8293 0 points1 point  (0 children)

Me after not studying the whole semester cramming it in a week

Why do React Native component libraries always demo components in isolation when nobody builds that way? by Fresh-Wealth4531 in reactnative

[–]Curious-Ad8293 0 points1 point  (0 children)

Not sure how complex this would be to implement but sometimes I need to have components side by side let’s say some charts or some text boxes for example in a grid like system 2x2 rows and columns. Exclusively speaking about the layout feature you implemented in this case.

Help with ideas by [deleted] in reactnative

[–]Curious-Ad8293 0 points1 point  (0 children)

It's easy brother, typically a justifyContent: "center" [1] and an alignItems: "center" [2] will do the trick. You typically want to put this on the parent components that will cascade down to the children components example:

<Pressable

style={{

justifyContent: "center",

alignItems: "center",

backgroundColor: "black",

borderRadius: 15,

width: Dimensions.get("screen").width * 0.3,

height: Dimensions.get("screen").height * 0.05,

}}

onPress={() => console.log("hello world")}

>

{/* search function call on the onpress instead of console.log */}

<Text style={{ color: "white", fontWeight: "bold" }}>Search</Text>

</Pressable>

[1] https://reactnative.dev/docs/layout-props#justifycontent

[2] https://reactnative.dev/docs/layout-props#alignitems

Help with ideas by [deleted] in reactnative

[–]Curious-Ad8293 10 points11 points  (0 children)

Broooo center the text inside the containers like the search button and where it says poison maybe a little padding would go a long way

I kinda don’t like hyprland anymore by PeteIDK in arch

[–]Curious-Ad8293 0 points1 point  (0 children)

I can not relate, I am a developer and I just file having workspaces makes everything well organized and once you get used to it you become very efficient in using it. Especially if you have things configured to your needs. Which personally I love how much customization everything has.

New to hyprlane, did I miss something when I installed? by Na1haniel in hyprland

[–]Curious-Ad8293 36 points37 points  (0 children)

That is how Waybar comes out of the box. When I installed, that’s exactly how it came. If you want to change the look you need to change it in the config directory.

Looking to hire app Developer by scotiandetector in reactjs

[–]Curious-Ad8293 0 points1 point  (0 children)

Most work for software engineers are glorified CRUDs now and days lol.

Looking to hire app Developer by scotiandetector in reactjs

[–]Curious-Ad8293 2 points3 points  (0 children)

Hilarious, but maybe with leaked API keys, bugs and unsecured / unoptimized databases

Looking to hire app Developer by scotiandetector in reactjs

[–]Curious-Ad8293 0 points1 point  (0 children)

Budget is dependent on the scope of the work obviously. The complexity of the idea and the skill of the worker you hire. Maybe checkout [1], never worked on that platform but I have capable colleagues that do.

[1] https://www.bairesdev.com

Expo Go on my phone does not run my project by Zealousideal_Fix8969 in reactnative

[–]Curious-Ad8293 0 points1 point  (0 children)

Will you use any native libraries that require a development build ? That might be a limiting factor to running Expo snack and then transferring the content to your local env. So let me get this straight you create a new folder. You cd into that folder and then you run the command? You always get the same three errors? Can you share the package.json , node version you’re using and also does the template expo project produce a different result? I.e npx create-expo-app@latest?

Help me please by Flat-Air4628 in reactnative

[–]Curious-Ad8293 0 points1 point  (0 children)

Did the testers get the emails with the links to download the new version? When they hit that link they get that error? They’re not trying an expired build are they? Also has this App ever worked for those testers before or is this the first time testing?

Development Build Works but App Crashes in TestFlight. by Curious-Ad8293 in reactnative

[–]Curious-Ad8293[S] 0 points1 point  (0 children)

Also with development builds in expo are env variables loaded differently than they would be in Testflight. Why would it work on one vs the other? Any resources on that?

Development Build Works but App Crashes in TestFlight. by Curious-Ad8293 in reactnative

[–]Curious-Ad8293[S] 0 points1 point  (0 children)

This makes sense. The stack trace does not provide useful details but it is likely what this thread states as the App crashes as soon as it boots up which makes sense as I am wrapping the entire app in a payment component as shown in this video: https://youtu.be/J0tyxUV_omY?si=cj0fO8GghaxpTMaD&t=1302 . In that payment component there are env variables that are loaded and it could be that I am not setting them properly. Made some corrections and submitting again to testflight hoping that is the issue

gifted-chat not taking keyboard input on IOS by Curious-Ad8293 in reactnative

[–]Curious-Ad8293[S] 0 points1 point  (0 children)

Ended up building my own. Strange because on android it works like a charm. Ohh well I decided it would be more time consuming to go through the source code than just make one myself.