mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
11 lines
364 B
Dart
11 lines
364 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LunaTextStyle extends TextStyle {
|
|
const LunaTextStyle.labelMedium()
|
|
: super(
|
|
fontSize: 12.0, // md.sys.typescale.label-medium.size
|
|
fontWeight: FontWeight.w500, // md.sys.typescale.label-medium.weight
|
|
height: 16.0 / 12.0, // md.sys.typescale.label-medium.line-height
|
|
);
|
|
}
|