mirror of
https://github.com/git-touch/git-touch
synced 2025-02-15 19:10:45 +01:00
13 lines
254 B
Dart
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);
|
|
}
|
|
}
|