mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-03-12 02:06:17 -05:00
12 lines
253 B
Dart
12 lines
253 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);
|
|
}
|
|
}
|