aves/lib/widgets/collection/grid/header_album.dart
2020-11-25 16:46:34 +09:00

41 lines
1.2 KiB
Dart

import 'package:aves/theme/icons.dart';
import 'package:aves/utils/android_file_utils.dart';
import 'package:aves/widgets/collection/grid/header_generic.dart';
import 'package:aves/widgets/common/identity/aves_icons.dart';
import 'package:flutter/material.dart';
class AlbumSectionHeader extends StatelessWidget {
final String folderPath, albumName;
const AlbumSectionHeader({
Key key,
@required this.folderPath,
@required this.albumName,
}) : super(key: key);
@override
Widget build(BuildContext context) {
var albumIcon = IconUtils.getAlbumIcon(context: context, album: folderPath);
if (albumIcon != null) {
albumIcon = Material(
type: MaterialType.circle,
elevation: 3,
color: Colors.transparent,
shadowColor: Colors.black,
child: albumIcon,
);
}
return TitleSectionHeader(
sectionKey: folderPath,
leading: albumIcon,
title: albumName,
trailing: androidFileUtils.isOnRemovableStorage(folderPath)
? Icon(
AIcons.removableStorage,
size: 16,
color: Color(0xFF757575),
)
: null,
);
}
}