14 lines
333 B
Dart
14 lines
333 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
Widget textgray14W400cambria(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: const Color(0xffA1A1A1),
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'Cambria'),
|
|
);
|
|
}
|