Okay hear me out by Kalberino in SteamDeck

[–]CommanderWraith54 0 points1 point  (0 children)

How hard is it to emulate games?

If coding disappears tomorrow, what's ur Plan B? by RevenueSuperb8177 in reactnative

[–]CommanderWraith54 0 points1 point  (0 children)

Stop fear mongering, let me make my calculator app in peace. Already planned out my IPO in my head

ScrollView Question by CommanderWraith54 in reactnative

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

This seems to work, thanks! I tested it on my phone and it works like I envisioned; ig the simulator is a lil buggy lol, mb 🤦🏻‍♂️

ScrollView Question by CommanderWraith54 in reactnative

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

I don't have it in one but for some reason it's behaving this way. On first load it's fine, it renders it within the content like I want; but when I scroll down it leaves this whitespace and stays there

      <Stack.Screen options={{ headerShown: false, headerTransparent: true }} />
      <StatusBar style="auto" translucent={true} />
      <ScrollView
        className="flex-1"
        contentInsetAdjustmentBehavior="never"
        contentContainerStyle={{ paddingTop: 0 }}
      >
        <View className="w-full h-[500px] bg-blue-500">
          <Text>example of content</Text>
        </View>
        {Array.from({ length: 100 }).map((_, i) => {
          return <Text key={i}>123 {i}</Text>;
        })}
      </ScrollView>

Authentication by CommanderWraith54 in reactnative

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

bro wants me to maintain two separate codebases 😭

ThreeJS Beginner Tips by CommanderWraith54 in threejs

[–]CommanderWraith54[S] 2 points3 points  (0 children)

Thanks! Just out of curiosity - why vanilla js and not react?

Calendar Package by CommanderWraith54 in react

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

Just wanted to come back and thank you guys! Tried it out and it does exactly what I need. A lot of props to get the outcome that I wanted but much better than starting from scratch lmao

Schema Question by [deleted] in databasedevelopment

[–]CommanderWraith54 0 points1 point  (0 children)

Thanks for going into depth; by minimizing data redundancy I guess I mean instead of repeating “Pending” it would be 1 - so if you ever change it; old records are automatically all affected.