Flutter Tutorial - Localization & Internationalization with INTL & ARB Files

Поділитися
Вставка
  • Опубліковано 14 гру 2024

КОМЕНТАРІ • 156

  • @HeyFlutter
    @HeyFlutter  Рік тому +1

    This might help you :)
    👉 12 Week Flutter Training from Newbie to Expert: heyflutter.com
    Source Code: github.com/JohannesMilke/localization_arb_example

    • @fraturkish
      @fraturkish Рік тому

      is the description mandatory? @HeyFlutter

  • @bnetz
    @bnetz 3 роки тому +9

    What a great tutorial! Speed, understandability is perfect. Instructor is so well prepared, we don't have to watch while he's typing, all comes from the clipboard or is already prepared. Thank you so much, it immediately worked for me when I (beginner in flutter, advanced in programming) implemented it in an existing project. You are the new flutter-god!!!!

  • @ziyadmansy6016
    @ziyadmansy6016 3 роки тому +8

    Man, you are a mind reader! I started liking every video of urs before even watching + i subscribed to notifications whenever you upload any video! you among a few really deserve it

  • @adeelzahid9622
    @adeelzahid9622 3 роки тому +2

    very appreciated. please make a detailed video on BLOC, I'm still confused about a better way to manage a state and what is the best way to manage the state.

    • @adeelzahid9622
      @adeelzahid9622 3 роки тому

      @@HeyFlutter Thanks Boss 👍 🌸🌸

  • @stalkinstalk9813
    @stalkinstalk9813 2 роки тому

    Schönes und hilfreiches Video.

  • @allenrichardyeager8449
    @allenrichardyeager8449 3 роки тому

    Your tutorial save my life. thank you

  • @spacec0der
    @spacec0der Рік тому +1

    Good practice tip for everyone:
    Create an extension like so you can access the translation values like Text(context.locale.yourTranslation)
    import 'package:flutter/material.dart';
    import 'package:flutter_gen/gen_l10n/app_localizations.dart';
    extension LocalizationsExtensions on BuildContext {
    AppLocalizations get locale => AppLocalizations.of(this)!;
    }
    You can set also for other situations like access the Theme.of(context) colors properties:
    import 'package:flutter/material.dart';
    extension BuildContextExtensions on BuildContext {
    ThemeData get theme => Theme.of(this);
    TextTheme get textTheme => theme.textTheme;
    ColorScheme get colorScheme => theme.colorScheme;
    Color get backgroundColor => colorScheme.background;
    Color get cardColor => theme.cardColor;
    }
    from Theme.of(context).colorScheme.background
    to context.backgroundColor
    :))))))

    • @HeyFlutter
      @HeyFlutter  Рік тому

      Thanks for sharing, @spacec0der! 🙂

  • @RaphaelPungin
    @RaphaelPungin 3 роки тому +4

    Hi Johannes. Your video helped me to learn how to use placeholders for localization of interpolated strings. For some reason that was not mentioned in the official Flutter documentation. So that you for making this video! Do you know how plurals are handled in Flutter localization using ARB format?

  • @kirtik1972
    @kirtik1972 3 роки тому +1

    Hi ,
    Please help .
    Launching lib\main.dart on AOSP on IA Emulator in debug mode...
    Running Gradle task 'assembleDebug'...
    Error: Cannot run with sound null safety, because the following dependencies
    don't support null safety:

  • @MultiYiff
    @MultiYiff 3 роки тому +4

    I did your guide but it was a bit outdated. I can't set the variable "Locale _locale" and it say's it must be non nullable.
    Tried with "late Locale _locale" but getting the message "The following LateError was thrown building Builder(dirty, dependencies: [_InheritedProviderScope]):
    LateInitializationError: Field '_locale@23001738' has not been initialized."
    How should I do?

  • @sporttirol
    @sporttirol Рік тому

    Ich darf Dir mitteilen, dass ich aufgrund deiner Kurse programmieren gelernt habe. Dafür darf ich mich bedanken.

    • @HeyFlutter
      @HeyFlutter  Рік тому

      Glad to hear that, Thank you sporttirol! 😊

  • @tekocode
    @tekocode 3 роки тому

    You are the best man . short and easy explanation

  • @tube-rp1nb
    @tube-rp1nb 3 роки тому

    always watching your tutorials. always they are the best of all. thank you man

  • @stayfen2499
    @stayfen2499 2 роки тому +2

    hello :) I really like ur type of videos, easy to follow and useful as well !!
    I got a little issue tho, while u were in minute: 12:08, when i type this line
    "final provider = Provider.of(context);"
    inside the changeNotifierProvider I get an error saying:
    "The method 'dynamic Function(BuildContext)' is declared with 0 type parameters, but 1 type arguments are given.
    Try adjusting the number of type arguments."
    I tried adding build context and everything but I still get the same problem
    I hope u can help :')

  • @ucnamnguyen7549
    @ucnamnguyen7549 Рік тому

    Very helpful and informative. Thanks

    • @HeyFlutter
      @HeyFlutter  Рік тому

      You are welcome, Đức Nam Nguyễn!

  • @hk20092009able
    @hk20092009able Рік тому

    very clear and tuff understanding with easy explaining thank you HeyFlutter

    • @HeyFlutter
      @HeyFlutter  Рік тому

      You’re most welcome, عبد الحكيم عجاج! 🙂

  • @palakpandey1376
    @palakpandey1376 2 роки тому +1

    by this i am able to change language in one page what if i want that language to reflect in all the app?

  • @TheWhoIsTom
    @TheWhoIsTom 3 роки тому +2

    Hi Johannes, is there a way to implement the LocaleProvider in a Multiprovider setup? Grüße aus Deutschland ;)

  • @MisterNorthernCanuck
    @MisterNorthernCanuck 3 роки тому +1

    No BS, to the point. Thank you!!

  • @kolansheen
    @kolansheen 3 роки тому

    you saved my day! many thanks Johannes

  • @FlutterShipp
    @FlutterShipp 2 роки тому

    Excellent explaination

    • @HeyFlutter
      @HeyFlutter  2 роки тому +1

      Thank you, FlutterShip! 🙂

  • @sanjibdutta9270
    @sanjibdutta9270 3 роки тому

    First I press the like button then start watching your video 😊

  • @margaretisolan9189
    @margaretisolan9189 2 роки тому

    Fantastic explanation!

  • @gumdum6764
    @gumdum6764 3 роки тому

    Thank you very much for this! Easy to follow instructions on the latest way to handle localization.

  • @kwakukusi4094
    @kwakukusi4094 2 роки тому

    dude you're so amazing, thank you very much

  • @lynixisbleysed8537
    @lynixisbleysed8537 3 роки тому +1

    Hello, thanks for this awesome tutorial, i tried your tuto, but I have problem,
    after each restart of app, it's give me the default locale, how i can save the selected language and use it ?

  • @hooriqbal1099
    @hooriqbal1099 Рік тому

    Unable to use ChangeNotificationProvider described at 12:00 in the video... The flutter gives an error for MyApp type how to fix this?

    • @hooriqbal1099
      @hooriqbal1099 Рік тому +1

      I forgot to add provider: ^6.0.1 in pubspec.yaml file if anyone else has the same issue its because of this

  • @amigoface
    @amigoface 3 роки тому

    exactly what i was looking for ! thanks .

  • @alvarofernandez4637
    @alvarofernandez4637 2 роки тому

    Thank you!! This helped me a lot. Nice tutorial!

  • @agreensh
    @agreensh 3 роки тому

    Thanks Johannes. Excellent content.

  • @sumittiware9382
    @sumittiware9382 3 роки тому

    Much needed one...thank you!!

  • @bnetz
    @bnetz 3 роки тому +1

    Is it possible to use the Strings from the *.arb-files in separate classes without the context? Means, let's say I have a separate class Calculator with a method
    String calc() {
    int a = 1 * 3;
    return "The result is " + a; }
    How can I use a localized String for "The result is"? As the class has no context I cannot use something like AppLocalizations.of(context).theResultIs . Perhaps it is possible to pass the context as a parameter to the methods?

    • @bnetz
      @bnetz 3 роки тому +1

      @@HeyFlutter Thanks a lot! Because I am new to Flutter I think 1 and 2 might be the most handsome solutions. Do you think it would make problems passing the context around (instead of passing the AppLocalization)? Like writing a method
      void setContext(BuildContext b) { this.myPassedContext = b; }
      in my workerclass and then use it there, to stay in my initial example: … return AppLocalizations.of(myPassedContext).myLocalizedString + a;
      Or will this lead to problems (like when switching the language to runtime or something like that)?

    • @bnetz
      @bnetz 3 роки тому

      @@HeyFlutter Thanks a lot Johannes! So I solved it with solution 2 (as my worker class returns Strings which are used by the validator; solution 1 therefore is not applicapable, as my example was simplified).

  • @uditmishra5583
    @uditmishra5583 3 роки тому

    Very useful video,
    Thanks.

  • @kardoaziz6530
    @kardoaziz6530 2 роки тому +1

    thank you for the great tutorial, But I have a question, do you have any video that shows how to remember selected language after closing the application and reopening it ? your tutorial works fine but every time i close the application and open it it will go back to default language

    • @mattgeek49
      @mattgeek49 9 місяців тому

      I would also like to know, I need that functionality

  • @anaselboudali2824
    @anaselboudali2824 3 роки тому

    +1 follower, this is very well documented

  • @amjadzayed5651
    @amjadzayed5651 2 роки тому

    worked! many thanks

    • @HeyFlutter
      @HeyFlutter  2 роки тому

      You're welcome, amjad zayed! 🙂

  • @Nicosfrs
    @Nicosfrs Рік тому

    13:50 When closing the app the selected language is lost, how do I keep it even after closing the app?

    • @HeyFlutter
      @HeyFlutter  Рік тому

      Thank You Nico! Follow this link: stackoverflow.com/questions/71613395/how-to-keep-language-changed-even-after-my-app-is-closed-in-flutter
      I hope you will get your answer 🙂

  • @rakeshsinghrawat4408
    @rakeshsinghrawat4408 3 роки тому

    sir if my mobile default language is english but i want to show spanish language first time i open the app

  • @johnpeter122
    @johnpeter122 3 роки тому

    As usual awesome ..
    Thank you very much.

  • @hectorprx
    @hectorprx 3 роки тому

    Concise Informative Brilliant

  • @KafiMohammed-c9g
    @KafiMohammed-c9g 10 місяців тому

    in the provider folder,, local_provider.dart we have Locale _locale but it shows error for me '' Non-nullable instance field '_locale' must be initialized.
    Try adding an initializer expression, or a generative constructor that initializes it, or mark it ' and also void clearLocale _locale = null; null not working said '' A value of type 'Null' can't be assigned to a variable of type 'Locale'.
    '''.. how i can solve please?

    • @HeyFlutter
      @HeyFlutter  10 місяців тому

      Thank You @user-di4ig2pm2t! Follow this link: stackoverflow.com/questions/67034475/non-nullable-instance-field-must-be-initialized
      I hope you will get your answer 🙂

  • @SumanBaul
    @SumanBaul 3 роки тому

    Hi Johannas, Great tutorial.
    Can you please make a tutorial for reading and opening all app notifications. It will be very helpful.
    Thanks.

    • @SumanBaul
      @SumanBaul 3 роки тому

      Thanks a lot for your humble response. Will be waiting! 🙂

  • @mohammedaymen8542
    @mohammedaymen8542 2 роки тому

    you are THE BEST 👌

    • @HeyFlutter
      @HeyFlutter  2 роки тому +1

      Thanks, @mohammedaymen8542! 🙂

  • @ahmedjawad7350
    @ahmedjawad7350 3 роки тому

    That was great help .. many thanks:)

  • @okokokokokok5173
    @okokokokokok5173 2 роки тому

    i can't use fr_FR code even when change my file name to app_fr_FR it cause an error arb not found, I tried this because when I set locale to null the app not used the system language so I tries to get it with Platform.localeName

  • @qadirkrimov6448
    @qadirkrimov6448 3 роки тому

    Thanks for everything

  • @aliomayrat1707
    @aliomayrat1707 3 роки тому

    danke für deine super video!
    wie sieht es aus wenn man dabei noch eine suchen funktion hat für die json datein aus einer API. die arber in der App übersetzt werden. das wenn man in seiner sprache sucht auch die ergebnisse in seine Sprache bekommt?

  • @mnutube8095
    @mnutube8095 3 роки тому

    Thank you for the video,
    I have a question : Can we do internationalization manually without localisation?
    For exemple i want to set a default language, default date and time formats.... and give him the choice to change whenever he wants without needing the location ? Is there any exemples please?

  • @JeffreyLiu8
    @JeffreyLiu8 3 роки тому

    This is great thank you. Can you teach us how to save the language preference in shared pref so load up would work? Now with your code I believe once we kill the app, it will reset back to default system local. If you save the local, then loading local from shared pref would be async and it would be slow on app start up.

  • @Pedro5antos_
    @Pedro5antos_ 3 роки тому

    Thanks mate!

  • @ahmedjawad7350
    @ahmedjawad7350 3 роки тому

    Johannes please, how can I call a function inside the statefulWidget from the statelesswidget afther changing the language?
    I need the refresh the app afther changing the language, the localeResolutionCallback: did not help

    • @ahmedjawad7350
      @ahmedjawad7350 3 роки тому

      @@HeyFlutter thanks a lot for help .. good luck :)

  • @dohranovicart6241
    @dohranovicart6241 3 роки тому

    How fix this?
    The property 'language' can't be unconditionally accessed because the receiver can be 'null'.
    Try making the access conditional (using '?.') or adding a null check to the target ('!').

  • @JohnLiuFromHK
    @JohnLiuFromHK 3 роки тому

    Hello, i want to ask sth about the arb file.
    As I have to generate language for simplified chinese which requires a locale with country code. But then when I build the project, an error told me I have to create a base arb file. So i have app_zh.arb and app_zh_CN.arb.
    But inside the generated files, I can only find the app_localizations_zh.dart. Do you know what am i missing?

    • @JohnLiuFromHK
      @JohnLiuFromHK 3 роки тому

      @@HeyFlutter but whats the file name should I use for the locale with country code? My locale is Locale.fromSubtags(lauguageCode: ‘zh’, countryCode: ‘CN’)
      But my app_zh_CN.arb name not working :(

    • @JohnLiuFromHK
      @JohnLiuFromHK 3 роки тому

      @@HeyFlutter oh the cn information is inside the same file of the zh one.

  • @uvaismohammad1862
    @uvaismohammad1862 2 роки тому

    Thank you so much for this .Really love you bruh🥰😘😘😘😍💖💖

  • @eNONO-ot4zh
    @eNONO-ot4zh 3 роки тому

    Just like in my dream. Thank u.
    You are amazing 🤩🤩

  • @zakblacki
    @zakblacki 3 роки тому

    There is error on your git project
    The current Dart SDK version is 2.10.5.
    Because localization_arb_example depends on cupertino_icons >=1.0.1 which requires SDK version >=2.12.0-0

  • @haiderjaafer8164
    @haiderjaafer8164 3 роки тому

    Absolutely brilliant as always keep going forward..🌸🌸🌸

    • @haiderjaafer8164
      @haiderjaafer8164 3 роки тому

      @@HeyFlutter
      Can you make a lesson for phone authentication

  • @joelfah
    @joelfah Рік тому

    A very nice tutorial there. Always strainght forward. I like it. Keep up.
    But pease, I tested your approach on Flutter web and it works like charm but I noticed that when ever I purposely reload the tab the locale is reseted to the system's locale. It doesn't take into consideration if it there were any changes before. Is there any way to persist the locale value after calling setLocale ?
    Thanks

    • @HeyFlutter
      @HeyFlutter  Рік тому

      Thank You Joel Fah! Follow this link: stackoverflow.com/questions/49441212/flutter-multi-lingual-application-how-to-override-the-locale
      I hope you will get your answer 🙂

  • @FarazKhanDev
    @FarazKhanDev 3 роки тому

    love your videos, you make difficult tasks look easy :). Please make a similar video for in app purchases. Thanks

  • @Wishkova_baksuzna_statistika

    How to modify the code to add supportedScript? I tried to add translations, add supportedScript in the list of languages, but it is not working.
    Also returned Locale.subfromSubtags(), but seems it is not working.

    • @HeyFlutter
      @HeyFlutter  Рік тому

      Thank You A Projekt! Follow this link: stackoverflow.com/questions/66185977/flutter-internationalization-intl-code-generation-not-working
      I hope you will get your answer 🙂

    • @Wishkova_baksuzna_statistika
      @Wishkova_baksuzna_statistika Рік тому

      @@HeyFlutter No, that did not help. Already saw it.

  • @pedromartin3766
    @pedromartin3766 3 роки тому

    thanks! Really, really helpful

  • @Joel19199
    @Joel19199 3 роки тому

    Hi @Johanees! Is there a list where we can get all the flags? I need Spanish and Catalonian flag, and I can´t find the flag code. Thanks in advance ;)

  • @arunchetan6943
    @arunchetan6943 3 роки тому

    if i restart the app it changes to default language English, can you plz tell where to use the shared preference to save the language... thanks in advance❣️❣️

  • @rc5016
    @rc5016 3 роки тому

    Great tutorial! But I've got this error :"Exception has occurred.
    _CastError (Null check operator used on a null value)" .Flutter suggest to add "!" like this "AppLocalizations.of(context)!.appName " but it generates the error.Did you had it?

  • @danielchan1203
    @danielchan1203 3 роки тому

    Thank you for your tutorial, it is great. However, I face some issues that I need help. I notice the fontSize is different when changing locale between en and zh, even on the text that are not translated. Any ideas about how to fix this?

  • @hurolinci5986
    @hurolinci5986 3 роки тому

    gutes Video.

  • @ankiy
    @ankiy 3 роки тому

    Is it possible to change it during run time like when user entered their name their name is translated in different lang?

  • @satishdhend2345
    @satishdhend2345 3 роки тому

    You are great👍😊👏

  • @itjoe1971
    @itjoe1971 3 роки тому

    very very good. thank you

  • @manggamusasuleiman
    @manggamusasuleiman 2 роки тому +1

    In my case my flutter gen folder is changed to generated and AppLocalization.delegate is changed to S.delegate, and lastly app_en.arb is changed to intl_en.arb, apart from these changes, it works superb, thank you :)

  • @yamunag4383
    @yamunag4383 2 роки тому

    plz help ..........AppLocalizations.of(context) getting null why?

    • @HeyFlutter
      @HeyFlutter  2 роки тому

      Thank you Yamuna G, make sure to follow the tutorial step by step 🙂

  • @ahsanraza756
    @ahsanraza756 2 роки тому

    in-app-purchase video plz

  • @dhruvinprajapati4345
    @dhruvinprajapati4345 2 роки тому

    any short way to use AppLocalizations.of(context)!.languagein every page?

    • @HeyFlutter
      @HeyFlutter  2 роки тому

      Thank You dhruvin prajapati! Follow this link: medium.flutterdevs.com/localization-multi-language-in-flutter-5cedb6ff459b
      I hope you will get your answer 🙂

  • @premchandraseakaran1847
    @premchandraseakaran1847 2 роки тому

    If I want to make German as my default app language, How can I achieve this case ?

  • @rv9570
    @rv9570 3 роки тому

    Hi Johannes , if i add the other language in text widget without any package use will it support that for all devices as on my device it work fine ? can we process like that as i don't want to translate anything just to show the text of other language as it is as a text. Please if possible then let me know. Thanks for you wonderful videos it help a lot to me and i think all of the globe who watch it.

    • @rv9570
      @rv9570 3 роки тому

      Thanks to you too for making such a nice videos for this language..

  • @monikasharma3403
    @monikasharma3403 2 роки тому

    Its showing me error when i add import statement @Johannes Milke Can you help what i did wrong

    • @HeyFlutter
      @HeyFlutter  2 роки тому

      Thank you Monika Sharma, make sure to follow the tutorial step by step 🙂

  • @sarveshpathak4879
    @sarveshpathak4879 3 роки тому

    Hey Johannes Milke I loved this content it was very important for my application. I am getting an error called NoSuchMethodError. Getter was called on null. Receiver null. Could you please help me out. Thanks in advance.

  • @valerijt4344
    @valerijt4344 3 роки тому

    Now this example does not work correctly with FLutter sound null safety. how can I change it to make it work?
    you can see these errors by setting in pubspec.yaml
    environment:
    sdk: "> = 2.12.0

    • @valerijt4344
      @valerijt4344 3 роки тому

      @@HeyFlutter You are right about that. But FLutter sound null safety is like a new standard. Help us follow it

  • @DongNguyen-lu9ej
    @DongNguyen-lu9ej 2 роки тому

    hi Milke, such a great tutorial. But i have a question. How can we combine this with remote languages and words ? Thanks you

    • @DongNguyen-lu9ej
      @DongNguyen-lu9ej 2 роки тому

      ​@@HeyFlutter ah sorry, my bad. What i mean is we download list of language files at run time instead of fixed number of language at compile time. So when we need to add new language, we don't need to change and submit the app again.
      You know, it similar to remote config. After downloaded all language files. How can we combine those files with this approach ? Thanks you for replying :D

  • @karthikr9288
    @karthikr9288 3 роки тому

    When i try to access the localized method somewhere i want,
    i get no such method error.
    Is there a fix for this?

    • @karthikr9288
      @karthikr9288 3 роки тому

      My bad I forgot to declare delegates inside my materialApp, it works fine now😊 thanks for the reply

  • @ankiy
    @ankiy 3 роки тому

    How you have put the flag inside ' '? Like we have to copy the flag from Chrome or something else?

    • @ankiy
      @ankiy 3 роки тому

      @@HeyFlutter thanks

  • @developerbuddy4652
    @developerbuddy4652 3 роки тому

    Please Brother,
    Make series on Bloc

  • @blueinc4132
    @blueinc4132 3 роки тому

    I love your videos Man . However i face some issue about The getter 'value' was called on null

    • @blueinc4132
      @blueinc4132 3 роки тому

      @@HeyFlutter thanks i forgot that i have a main.dart.

  • @ezone2726
    @ezone2726 3 роки тому

    What if there will be change an ip address as the country name?
    Does it possible?
    And thank you so much for this tutorial!

    • @ezone2726
      @ezone2726 3 роки тому

      @@HeyFlutter its like a vpn;
      While we seleted the country then the ip address will be changed!

  • @mohamedshifan1088
    @mohamedshifan1088 3 роки тому

    sir i need to know can we send sms throw our special app, without open mobile sms app.

    • @mohamedshifan1088
      @mohamedshifan1088 3 роки тому

      @@HeyFlutter my "service maintain" app need send sms to all customers a special message.

    • @mohamedshifan1088
      @mohamedshifan1088 3 роки тому

      @@HeyFlutter AND you will get best flutter developer award soon. 💕❤💕💕💕💖

  • @3shmawyz
    @3shmawyz 3 роки тому

    dose i have to translate each word in the ARB file or it generated automatically

    • @3shmawyz
      @3shmawyz 3 роки тому

      @@HeyFlutter Thanks a lot sir one more question dose google translation effective in large apps ?? and what if i used the normal local with ARB files and added comments section or reviews in my project this mean i have put a hole language like a dictionary in {Key:values} or there is another way... i know a m a Little bit annoying but forgive me, you dont find flutter experts every where :D and i just find you

    • @3shmawyz
      @3shmawyz 3 роки тому

      @@HeyFlutter thanks for demonstration i really appreciate you time sir

  • @faizy3132
    @faizy3132 2 роки тому

    how to translate data inside listView builder can someone help..?

    • @HeyFlutter
      @HeyFlutter  2 роки тому

      Thank You faizy 313! Follow this link: stackoverflow.com/questions/54163874/listview-builder-in-flutter-with-different-items
      I hope you will get your answer 🙂

  • @RADIOSCATRACHASUTAN
    @RADIOSCATRACHASUTAN 2 роки тому

    Hum, long step and lots of files to do this, useful if your app doesn't need internet but will give increase App size, what I do if internet connection is necessary is send I payload with language code and reseive the translation from server, async is your friend and small footprint size for ur app.

    • @RADIOSCATRACHASUTAN
      @RADIOSCATRACHASUTAN 2 роки тому

      @@HeyFlutter wasn't a question is what I actually do in my App, if connected to the internet I just send a Post payload with language code to retrieve translation from the server, PHP or any other server side programming language, this as result make ur app lightweight.. async and a Map and you have ur translated example lang['welcometoflutter'] .

    • @RADIOSCATRACHASUTAN
      @RADIOSCATRACHASUTAN 2 роки тому

      And then if u dont want to make this everytime ur app init u can save it in your app cache folder or app folder.

  • @arnaudduquenoy2061
    @arnaudduquenoy2061 3 роки тому

    Caramba ! Gorgeous !

  • @sokdethchuon6094
    @sokdethchuon6094 3 роки тому

    How to save user choice with shared preferences?

    • @sokdethchuon6094
      @sokdethchuon6094 3 роки тому

      @@HeyFlutter Thanks and Sorry for my bad English. I already known about Shared preferences but i don't know how to use it in this case. Ex: if user choose on language i save language code with shared preferences and when user open app i want to get language code to display language that user have choose in previous. How can i do that ?

  • @bhumikachaplot
    @bhumikachaplot 2 роки тому

    It's not showing any .dart_tool file

  • @NajeebAslan
    @NajeebAslan 3 роки тому

    i love you you are great

  • @qaisnezami1770
    @qaisnezami1770 3 роки тому

    A value of type 'Null' can't be assigned to a variable of type 'Locale'.

  • @jraulc
    @jraulc 3 роки тому

    This dude is so cool that I hate him already just because of that... but he deserve more views and subscribers so I'm in...

  • @ziyadmansy6016
    @ziyadmansy6016 3 роки тому

    An advice:
    please illustrate more, you are very good in illustrating using examples, but coding is understanding not memorizing.
    you had to tell us what does a template file mean? why did you choose the English one as the template in l10n.yaml not any other language, etc...
    still liked the video and deserved the like

  • @unomas9686
    @unomas9686 3 роки тому

    AppLocalizations dont definded ...... ;(

  • @delmanali4863
    @delmanali4863 3 роки тому

    Nice
    حلو

  • @IamAWildMan
    @IamAWildMan 3 роки тому

    PUBSPEC JAML FILE.

  • @mohammedgamal3358
    @mohammedgamal3358 Рік тому

    no Israel it is Palestine

  • @tarikali720
    @tarikali720 3 роки тому +1

    Good but there is no israel , it's palestine