flutter_localizations - разделяет переводы между приложением и пакетом - PullRequest
0 голосов
/ 29 августа 2018

Я использую flutter_localizations в моем проекте Flutter. Мне нужно было извлечь в локальный пакет некоторый общий код, который будет использоваться другими проектами, поэтому у меня будут файлы .arb в проекте приложения и в проекте пакета.

Когда я запускаю приложение сейчас, я получаю следующую ошибку:

I/flutter ( 7637): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY 
╞═══════════════════════════════════════════════════════════
I/flutter ( 7637): The following assertion was thrown building Builder(dirty):
I/flutter ( 7637): type 'en' is not a subtype of type 'S'
I/flutter ( 7637): 
I/flutter ( 7637): Either the assertion indicates an error in the framework itself, or we should provide substantially
I/flutter ( 7637): more information in this error message to help you determine and fix the underlying cause.
I/flutter ( 7637): In either case, please report this assertion by filing a bug on GitHub:
I/flutter ( 7637):   https://github.com/flutter/flutter/issues/new
I/flutter ( 7637): 
I/flutter ( 7637): When the exception was thrown, this was the stack:
I/flutter ( 7637): #0      _LocalizationsState.resourcesFor (package:flutter/src/widgets/localizations.dart:533:41)
I/flutter ( 7637): #1      Localizations.of (package:flutter/src/widgets/localizations.dart:445:39)

Может ли кто-нибудь мне помочь?

Заранее спасибо.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...