420 lines
8.3 KiB
Dart
420 lines
8.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
Widget text20W400(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 20.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text20W400_center(String text) {
|
|
return Text(
|
|
text,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 20.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text18W800(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 18.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w800,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text18W600(String text, {TextAlign textAl = TextAlign.start}) {
|
|
return Text(
|
|
text,
|
|
textAlign: textAl,
|
|
style: TextStyle(
|
|
fontSize: 18.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text18W500(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 18.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text18W500manrope(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 18.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'Manrope'),
|
|
);
|
|
}
|
|
|
|
Widget text18W400(String text,
|
|
{TextAlign texAl = TextAlign.start, double heightV = 1.5}) {
|
|
return Text(
|
|
text,
|
|
textAlign: texAl,
|
|
style: TextStyle(
|
|
fontSize: 18.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w400,
|
|
height: heightV,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text24W500(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 24.sp,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
maxLines: 2,
|
|
softWrap: true,
|
|
);
|
|
}
|
|
|
|
Widget text16W400(String text,
|
|
{Color clr = Colors.white, TextOverflow textOver = TextOverflow.clip}) {
|
|
return Text(
|
|
text,
|
|
overflow: textOver,
|
|
style: TextStyle(
|
|
fontSize: 16.sp,
|
|
color: clr,
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text16W400_1B1B1B(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 16.sp,
|
|
color: Color(0Xff1B1B1B),
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text12W500_B4B4B4(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 12.sp,
|
|
color: Color(0XffB4B4B4),
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W600_1B1B1B(String text, {Color? clr}) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: clr ?? const Color(0Xff1B1B1B),
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text16W600(String text, {Color clr = Colors.white}) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 16.sp,
|
|
color: clr,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text16W500(String text, {Color clr = Colors.white}) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 16.sp,
|
|
color: clr,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text15W600(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 15.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text15W600_00FF19(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 15.sp,
|
|
color: Color(0xFF00FF19),
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text12W400(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 12.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text12W500(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 12.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text12W600(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 12.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text8W400(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 8.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text22W600(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 22.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text20W600(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 20.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text22W600manrope(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 22.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'Manrope'),
|
|
);
|
|
}
|
|
|
|
Widget text25W600(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 25.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text25W800(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 25.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w800,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text22W500(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 22.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text16W700(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 16.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w700,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W300(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w300,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W400(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W500(String text, {Color? clr}) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: clr ?? Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W500Overflow(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
overflow: TextOverflow.ellipsis,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text16W400_DADADA(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 16.sp,
|
|
color: Color(0xFFDADADA),
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W400_979797(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: Color(0xFFE9E9E9),
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text12W400_979797(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 12.sp,
|
|
color: Color(0xFF979797),
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W400_00FF19(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: Color(0xFF00FF19),
|
|
fontWeight: FontWeight.w400,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text14W500_black(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: Colors.black,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|
|
|
|
Widget text10W300(String text) {
|
|
return Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 10.sp,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w300,
|
|
fontFamily: 'hiragino'),
|
|
);
|
|
}
|