fatal error: google fonts in flutter throws error

fatal error: google fonts in flutter throws error

我在 flutter 中遇到这个错误

../../../snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/google_fonts-2.3.0/lib/google_fonts.dart:142265:7: Error: No named parameter with the name 'displayLarge'.
      displayLarge:
      ^^^^^^^^^^^^
../../../snap/flutter/common/flutter/packages/flutter/lib/src/material/text_theme.dart:81:9: Context: Found this candidate, but the arguments don't match.
  const TextTheme({
        ^^^^^^^^^

同时 运行 移动应用程序

一些代码片段...

pubspec.yaml

dependencies:
  flutter:
    sdk: flutter
  http: ^0.13.4
  cupertino_icons: ^1.0.2
  google_fonts:
  get:

代码

     Padding(
              padding: const EdgeInsets.all(8.0),
              child: Text(
                'Details',
                style: GoogleFonts.pacifico(),
              ),
            )

提前致谢

您应该尝试设置特定版本,因为它似乎是由最近的 google_fonts 更新的要求引起的。

使用 google_fonts:2.1.1 对我有用。

同时勾选 https://github.com/material-foundation/google-fonts-flutter/issues/219 .

我已经将 flutter 版本更新到 2.10.0 & 现在它可以工作了