mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-28 10:28:58 -05:00
13 lines
247 B
Dart
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);
|
|
}
|
|
}
|