1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-15 19:10:45 +01:00
2022-09-22 16:28:21 +08:00

13 lines
254 B
Dart

import 'package:flutter/widgets.dart';
class AppBarTitle extends StatelessWidget {
const AppBarTitle(this.text);
final String? text;
@override
Widget build(BuildContext context) {
return Text(text!, overflow: TextOverflow.ellipsis);
}
}