拨开荷叶行,寻梦已然成。仙女莲花里,翩翩白鹭情。
IMG-LOGO
主页 文章列表 什么是颤振中textTheme的替代品。我收到以下错误

什么是颤振中textTheme的替代品。我收到以下错误

白鹭 - 2022-02-10 2007 0 0

我是新来的颤振得到这个错误。有人可以帮忙吗?尝试和文本样式。

什么是颤振中 textTheme 的替代品。我收到以下错误

import 'package:flutter/material.dart';
import 'screens/location_detail/location_detail.dart';
import 'style.dart';


class App extends StatelessWidget{

  @override
  Widget build(BuildContext context) {
   return MaterialApp(
     home:LocationDetail(),
     theme:ThemeData(
       appBarTheme: AppBarTheme(
         textTheme: TextTheme(title: AppBarTextStyle)
       )
     )
   );
  }
}

uj5u.com热心网友回复:

您可以使用toolBarTextStyleandtitleTextStyle代替textTheme. 有关更多详细信息,请参阅下面的链接 textTheme

uj5u.com热心网友回复:

你可以titleTextStyle这样使用:

appBarTheme: AppBarTheme(
     titleTextStyle: TextStyle(color: Colors.blue)
)

appBar: AppBar(
    title: Text(
      ' ',
      style: Theme.of(context).appBarTheme.titleTextStyle,
    ),
标签:

0 评论

发表评论

您的电子邮件地址不会被公开。 必填的字段已做标记 *