
使用inherit来设置是否继承样式
DefaultTextStyle(
style: TextStyle(color: Colors.red, fontSize: 22),
child: Column(
children: <Widget>[
Text('1'),
Text('2'),
Text(
'3',
style: TextStyle(
inherit: false,
fontSize: 22,
color: Colors.black26,
),
),
],
),
),