You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
import 'package:flutter/material.dart';
|
|
|
|
class MyTextStyle {
|
|
static const MyTextStyle _i = MyTextStyle._internal();
|
|
const MyTextStyle._internal();
|
|
factory MyTextStyle() => _i;
|
|
|
|
static const String fontFamily = '';
|
|
|
|
static const TextStyle lightXS = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 10,
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
}
|