defaultTextStyles function
默认文本样式,与 Miuix 规范一致。字号单位为逻辑像素(Flutter sp 近似)。
Implementation
MiuixTextStyles defaultTextStyles() => MiuixTextStyles(
main: const TextStyle(fontSize: 17),
paragraph: const TextStyle(fontSize: 17, height: 1.2),
body1: const TextStyle(fontSize: 16),
body2: const TextStyle(fontSize: 14),
button: const TextStyle(fontSize: 17),
footnote1: const TextStyle(fontSize: 13),
footnote2: const TextStyle(fontSize: 11),
headline1: const TextStyle(fontSize: 17),
headline2: const TextStyle(fontSize: 16),
subtitle: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold),
title1: const TextStyle(fontSize: 32),
title2: const TextStyle(fontSize: 24),
title3: const TextStyle(fontSize: 20),
title4: const TextStyle(fontSize: 18),
);