8 lines
205 B
Dart
8 lines
205 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:unit2/utils/global.dart';
|
||
|
|
||
|
TextStyle titleTextStyle() {
|
||
|
return TextStyle(
|
||
|
fontSize: blockSizeVertical * 2.5, fontWeight: FontWeight.w500);
|
||
|
}
|