Files
gl_dao/lib/pages/auth/widget/auth_title.dart
唐明明 4a635f3570 init
2022-05-26 11:31:11 +08:00

19 lines
416 B
Dart

import 'package:flutter/material.dart';
/// 文字标题
class AuthTitle extends StatelessWidget {
final String title;
const AuthTitle({Key? key, this.title = ''}) : super(key: key);
@override
Widget build(BuildContext context) {
return Text(
title,
style: const TextStyle(
fontSize: 25.0,
fontWeight: FontWeight.bold,
color: Color(0xffffffff),
),
);
}
}