19 lines
416 B
Dart
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),
|
|
),
|
|
);
|
|
}
|
|
}
|