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.
28 lines
656 B
28 lines
656 B
import 'package:flutter/material.dart';
|
|
|
|
class MyTextStyle {
|
|
static const MyTextStyle _i = MyTextStyle._internal();
|
|
const MyTextStyle._internal();
|
|
factory MyTextStyle() => _i;
|
|
|
|
static const String fontFamily = 'dinokids';
|
|
|
|
static const TextStyle normal26 = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 26,
|
|
fontWeight: FontWeight.w400,
|
|
shadows: [
|
|
Shadow(
|
|
color: Color(0XFF5B5B5B),
|
|
blurRadius: 2.86,
|
|
offset: Offset(0, 2),
|
|
),
|
|
]
|
|
);
|
|
|
|
static const TextStyle normal17 = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 17,
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
}
|