我是新来的颤振得到这个错误。有人可以帮忙吗?尝试和文本样式。
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热心网友回复:
您可以使用toolBarTextStyle
andtitleTextStyle
代替textTheme
. 有关更多详细信息,请参阅下面的链接
textTheme
uj5u.com热心网友回复:
你可以titleTextStyle
这样使用:
appBarTheme: AppBarTheme(
titleTextStyle: TextStyle(color: Colors.blue)
)
appBar: AppBar(
title: Text(
' ',
style: Theme.of(context).appBarTheme.titleTextStyle,
),
0 评论