1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-07 23:28:54 +01:00
2019-09-11 19:59:47 +08:00

13 lines
247 B
Dart

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);
}
}