1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-01 08:26:53 +01:00

13 lines
247 B
Dart
Raw Normal View History

2019-09-11 19:59:47 +08:00
import 'package:flutter/material.dart';
class AppBarTitle extends StatelessWidget {
final String text;
AppBarTitle(this.text);
@override
Widget build(BuildContext context) {
return Text(text, overflow: TextOverflow.ellipsis);
}
}