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