Giter VIP home page Giter VIP logo

Comments (7)

danstepanov avatar danstepanov commented on June 11, 2024 1

@dimitrihartt I'll take a look this week but just an FYI, create expo stack isn't really optimized for web at all. It's meant to rapidly iterate on mobile app stuff. Appreciate the detailed issue though.

from create-expo-stack.

dimitrihartt avatar dimitrihartt commented on June 11, 2024 1

Thanks in advance @danstepanov! That will be great. I'm still trying to accomplish this end here! Count on me! And thanks for the great and valuable work on CES!

A possible solution would be the use of LanguageDetectorAsyncModule instead of LanguageDetectorModule... what do you think?

from create-expo-stack.

danstepanov avatar danstepanov commented on June 11, 2024 1

i can look into that, not sure but if you want to try opening a PR, it would be greatly appreciated. I am largely focusing on NativeWindUI.com this week.

from create-expo-stack.

dimitrihartt avatar dimitrihartt commented on June 11, 2024

Other important thing that I forgot to mention is that if you choose internationalization, in your app.json, it comes with "plugins" repeated:

"plugins": ["expo-router"],
....
"plugins": ["expo-localization"],

And if I manage to fix to:

"plugins": ["expo-router", "expo-localization"],

It still does not work.

from create-expo-stack.

dimitrihartt avatar dimitrihartt commented on June 11, 2024

It may be relevant: error on Problems VS Tab says:
file: tsconfig.json (node_modules)/expo-localization (1)
File 'expo-module-scripts/tsconfig.base' not found.

I have fixed this not-found error by runing: ctrl+shif+p and typing Typescript: Restart TS Server.

And still cant make the app work.

from create-expo-stack.

dimitrihartt avatar dimitrihartt commented on June 11, 2024

Hey my friend @danstepanov!I f you wish I have a PrintScreen I took now...
image

from create-expo-stack.

dimitrihartt avatar dimitrihartt commented on June 11, 2024

I fixed:
npm install i18next-browser-languagedetector
and changed file:
languageDetector.ts

import { Platform } from 'react-native';
import * as Localization from 'expo-localization';
import { LanguageDetectorModule } from 'i18next';
import browserLanguageDetector from 'i18next-browser-languagedetector';

export const languageDetector: LanguageDetectorModule = {
type: 'languageDetector',
detect: () => {
if (Platform.OS !== 'web') {
const locales = Localization.getLocales();
const firstLanguageCode = locales[0].languageCode ?? 'en';
return firstLanguageCode;
} else {
return browserLanguageDetector.name;
}
},
init: () => {},
cacheUserLanguage: () => {},
};

from create-expo-stack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.