fixed appbar in album screen

This commit is contained in:
ashilkn 2022-05-03 16:29:17 +05:30
parent 5b2fb96ec4
commit 6a69afdea0

View file

@ -45,33 +45,12 @@ class CollectionPage extends StatelessWidget {
);
return Scaffold(
appBar: PreferredSize(
<<<<<<< HEAD
preferredSize: Size.fromHeight(50.0),
child: GalleryAppBarWidget(
appBarType,
c.collection.name, //title
_selectedFiles,
collection: c.collection,
=======
preferredSize: Size.fromHeight(108),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
GalleryAppBarWidget(
appBarType,
c.collection.name,
_selectedFiles,
collection: c.collection,
),
Padding(
padding: const EdgeInsets.fromLTRB(12, 12, 0, 0),
child: Text(
c.collection.name,
style: Theme.of(context).textTheme.headline5,
),
),
],
>>>>>>> redesign
),
),
body: gallery,