clip title of galleryAppBar + remove rename from clicking galleryAppBar

This commit is contained in:
ashilkn 2023-11-08 14:24:52 +05:30
parent d14b2ef9d8
commit 9257a2afbf

View file

@ -113,15 +113,14 @@ class _GalleryAppBarWidgetState extends State<GalleryAppBarWidget> {
: AppBar(
elevation: 0,
centerTitle: false,
title: TextButton(
child: Text(
_appBarTitle!,
style: Theme.of(context)
.textTheme
.headlineSmall!
.copyWith(fontSize: 16),
),
onPressed: () => _renameAlbum(context),
title: Text(
_appBarTitle!,
style: Theme.of(context)
.textTheme
.headlineSmall!
.copyWith(fontSize: 16),
maxLines: 2,
overflow: TextOverflow.ellipsis,
),
actions: _getDefaultActions(context),
);