提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 使用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, ), ), ], ), ),