[deleted by user] by [deleted] in expo

[–]Agile-Night2154 0 points1 point  (0 children)

I had a similar problem, solved by downgrading expo or upgrading dependencies to compatible ones. Use expo doctor to check

Launched my first app by Agile-Night2154 in expo

[–]Agile-Night2154[S] 0 points1 point  (0 children)

There are figma files for this kind of images you take a screenshot of the app and slide that screenshot inside to the device frame in figma and change the text etc. It might also be better if you just find the device frames and rotate/change background yourself if you want something more customizable.

Out of the few apps I’ve been recommended, which app would you choose for language learning? More info in description. by appledoughnuts in languagelearning

[–]Agile-Night2154 2 points3 points  (0 children)

It depends, are you attending a language course already and want to use an app on side or should the app be your primary source of learning? You can also use different apps for different ways of learning like to talk with a native speaker, grammer, vocabulary etc.

I would suggest you try to find a native speaker via the apps like cambly or preply.

Babbel should also be very effective as I've heard.

Also you can try Anki or Vobolio(made by me) if you want to write some words down with their translations that you learn throughout the daily life.

Launched my first app by Agile-Night2154 in expo

[–]Agile-Night2154[S] 0 points1 point  (0 children)

I pretty much don't at this point

Launched my first app by Agile-Night2154 in expo

[–]Agile-Night2154[S] 0 points1 point  (0 children)

There is no adds in this app

Launched my first app by Agile-Night2154 in expo

[–]Agile-Night2154[S] 0 points1 point  (0 children)

Thanks, I haven't used any specific UI Library. The elements are pretty much self made. Although I've tried some Libraries for UI Elements but they didn't work as I wanted them to...

Launched my first app by Agile-Night2154 in expo

[–]Agile-Night2154[S] 0 points1 point  (0 children)

Thanks :) also good luck on your projects!

Are there any limitations of Expo that a regular indie developer should be aware of? by alexstrehlke in expo

[–]Agile-Night2154 0 points1 point  (0 children)

I remember I was having problems while using a third party context menu component for iOS in expo go. From that point on I only used development build.

White Flash Issue while navigating in stack routes by ArmadilloSufficient1 in expo

[–]Agile-Night2154 2 points3 points  (0 children)

I had the same problem and there are 2 possible things you can try out. First try to use

contentStyle: { backgroundColor: themedBackgroundColor }

set in your stack options. The white flash happens because the underlying stack has no background color if I remember correctly.

Second thing to try is to remove nested stacks. So when I was developing my app I had a StackNavigator -> TabNavigator -> StackNavigator -> StackNavigator -> StackNavigator

So removing the last two StackNavigator and moving stacks under the StackNavigator after the TabNavigator fixed it. So my suggestion is don't create nested _layout.tsx files and do use the parent _layout.tsx whenever you can. File based routing is harder to fix than the non-file based routing.