Giter Club home page Giter Club logo

Comments (5)

SnirYaZem avatar SnirYaZem commented on May 23, 2024

I'm also having the same problem. I managed to solve it by getting the strings ('...'.tr()) from a non static source.

from:
class AppStrings { static String homePageTitle = 'title'.tr(); }

to:
class AppStrings { String homePageTitle = 'title'.tr(); }

from easy_localization.

mohamedmohamedy avatar mohamedmohamedy commented on May 23, 2024

I'm also having the same problem. I managed to solve it by getting the strings ('...'.tr()) from a non static source.

from: class AppStrings { static String homePageTitle = 'title'.tr(); }

to: class AppStrings { String homePageTitle = 'title'.tr(); }

I don't think it's a good practice, as it will make a new instance of the AppStrings class every time you call a string from it.

from easy_localization.

mohamedmohamedy avatar mohamedmohamedy commented on May 23, 2024

The solution I found to solve this error was by getting the tr() call outside the StringsManager class, and call it after the calling of the string itself like that (StringsManager.test.tr()) and it worked fine.

I think the problem was that the StringsManager class make only one instance at the beginning of the application, and it doesn't make a new one after the language changes, so the values inside it remains the same.

from easy_localization.

ihou avatar ihou commented on May 23, 2024

Use this Code,ChatGPT gives me this solution,it works!!!

  1. wrap your root widget with RestartWidget
  2. call RestartWidget.restartApp
import 'package:flutter/material.dart';

class RestartWidget extends StatefulWidget {
  final Widget child;

  const RestartWidget({Key? key, required this.child}) : super(key: key);

  static restartApp(BuildContext context) {
    context.findAncestorStateOfType<_RestartWidgetState>()?.restartApp();
  }

  @override
  State createState() => _RestartWidgetState();
}

class _RestartWidgetState extends State<RestartWidget> {
  Key key = UniqueKey();

  void restartApp() {
    setState(() {
      key = UniqueKey();
    });
  }

  @override
  Widget build(BuildContext context) {
    return KeyedSubtree(
      key: key,
      child: widget.child,
    );
  }
}

from easy_localization.

aissat avatar aissat commented on May 23, 2024

@mohamedmohamedy Duplicate of #590

#552 (comment)

from easy_localization.

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.