如何在Flutter

时间:2018-03-10 23:07:15

标签: internationalization dart flutter

刚开始使用Flutter / dart,转换为PHP,并努力弄清楚如何将类传递给小部件。

我正在使用flutter创建我的第一个Android和iOS应用程序。

我正在进行国际化,使用我拥有的国际化课程,我的初始构建页面上的一切正常。但是,当它传递给另一个小部件时,我得到:

  

NoSuchMethodError:在null上调用getter textTitle   接收者:null
  尝试调用:textTitle

处理此问题的最佳方法是什么?

Flutter Doctor

  [✓] Flutter (Channel beta, v0.1.5, on Mac OS X 10.13.3 17D47, locale en-US)
  [✓] Android toolchain - develop for Android devices (Android SDK 27.0.1)
  [✓] Android Studio (version 3.0)
  [✓] Connected devices (1 available)

本地化dart

class HnLocalizations{
        HnLocalizations(this.locale);

        final Locale locale;

        static HnLocalizations of(BuildContext context){
            return Localizations.of<HnLocalizations>(context, HnLocalizations);
        }

        static Map<String, Map<String, String>> _localizedValues = {
            'en': {
                'btnLabelLoginS1': 'Login',
                'btnLabelRegisterS1': 'Sign Up'
            },
        ;

        String get s1ButtonLabelLogin =>
            _localizedValues[locale.languageCode]['btnLabelLoginS1'];

class HnLocalizationsDelegate extends LocalizationsDelegate<HnLocalizations> {
        const HnLocalizationsDelegate();

        @override
        bool isSupported(Locale locale) => ['en', 'es'].contains(locale.languageCode);

        @override
        Future<HnLocalizations> load(Locale locale) =>
            new SynchronousFuture<HnLocalizations>(new HnLocalizations(locale)); //HnLocalizations.load(locale);

        @override
        bool shouldReload(HnLocalizationsDelegate old) => false;
    }

主要飞镖

void main() {

        runApp(new MaterialApp(
            localizationsDelegates: [
                const HnLocalizationsDelegate(),
                GlobalMaterialLocalizations.delegate,
                GlobalWidgetsLocalizations.delegate,
            ],
            supportedLocales: [
                const Locale('en', 'US'), /// Americans
                const Locale('en', 'GB') /// Brits
            ],
            title: 'HN',
            home: new EntryPage(),
        ));

    }

    class EntryPage extends StatelessWidget {

       final HnColors _hnColors = new HnColors();

        @override
        Widget build(BuildContext context) {

            return new Scaffold(
                appBar: new AppBar(
                    // !!!**** THIS WORKS AS EXPECTED ****!!!!
                    title: new Text(HnLocalizations.of(context).s1ButtonLabelLogin),
                    backgroundColor: _hnColors.transparent(),
                    elevation: 0.0,
                ),
                backgroundColor: _hnColors.accent(),
                body: new Container(
                    decoration: new BoxDecoration(
                        image: new DecorationImage(
                            image: new AssetImage("assets/Background_World.png"),
                            fit: BoxFit.fitWidth,
                        ),
                    ),
                    child: new PanelArea(),
                )
            );
        }
    }


    class PanelArea extends StatelessWidget {

        @override
        Widget build(BuildContext context) {

            HnColors _hnColors = new HnColors();

            return new Container(
                child: new Center(
                    child: new Container(
                        decoration: new BoxDecoration(
                            borderRadius: new BorderRadius.circular(15.0),
                            color: _hnColors.transparent()
                        ),
                        child: new Column(
                            children: [
                                new Image.asset('assets/Icon_Intro_login'),
                                new Text(
                                    // !!!**** ERROR IS HERE ****!!!!
                                    HnLocalizations.of(context).s1M1HeaderTitle,
                                    style: new TextStyle(
                                        color: _haillioColors.white()
                                    ),
                                ),

处理此问题的最佳方法是什么?

更新时间:2018年3月11日
我发现如果我将所有代码都移到main.dart文件中。所有本地化都很好。但是,当我将我的小部件移动到单独的dart文件中时,即使所有代码都相同,错误也会返回。

更新:2018年3月12日 nicolás-carrasco a reference in this post指出了正确的方向(谢谢)。问题与处理in this post here的进口有关,最终成为对我有用的解决方案。下面在答案中添加了该示例。

1 个答案:

答案 0 :(得分:1)

Nicolás Carrasco指出了一个解决方案,该解决方案与导致问题的原因by way of link to this post有关。

在导入的localization.dart文件中:

import 'package:hn/hnLocalization.dart';

在导入的main.dart文件中我有:

import 'hnLocalization.dart';

这些与here

所描述的不同

确保使用相对路径vs packages导入所有文件解决了问题。区别在于我的文件而不是依赖项使用相对路径。那部分最初难倒。

现在我的localization.dart文件包含以下内容。

import 'hnLocalization.dart'; // <--- Using relative Path

class PanelArea extends StatelessWidget {

        @override
        Widget build(BuildContext context) { ...

        child: new Column(
            children: [
                new Image.asset('assets/Icon_Intro_login'),

                // This Now Works --->
                new Text(HnLocalizations.of(context).s1M1HeaderTitle,
            ] 
       ...

现在一切都好了。