OrientationStyleConfig.defaultLandscape constructor
OrientationStyleConfig.defaultLandscape()
创建默认横屏配置
Implementation
factory OrientationStyleConfig.defaultLandscape() {
return const OrientationStyleConfig(
titleStyle: TextStyleConfig(
fontSize: 18,
fontWeight: FontWeight.w600,
),
descriptionStyle: TextStyleConfig(
fontSize: 13,
fontWeight: FontWeight.w400,
),
contentStyle: TextStyleConfig(
fontSize: 15,
fontWeight: FontWeight.w400,
),
scoreStyle: TextStyleConfig(
fontSize: 15,
fontWeight: FontWeight.w400,
),
);
}