flutter——设置全局的字体样式和使用
在Flutter中,你可以使用ThemeData
来设置全局的字体样式。以下是一个简单的例子:
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
textTheme: TextTheme(
bodyText2: TextStyle(
fontSize: 18.0,
fontFamily: 'Roboto',
fontWeight: FontWeight.w500,
color: Colors.black,
),
),
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Text('This is body text', style: Theme.of(context).textTheme.bodyText2),
),
);
}
}
在这个例子中,我们设置了全局的bodyText2
样式,并在MyHomePage
的body
中使用了这个样式。当你需要在其他Widget中使用全局字体样式时,你可以通过Theme.of(context).textTheme.bodyText2
来访问它。这样,你就可以在不同的地方保持字体样式的一致性。
评论已关闭