mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 23:06:21 +01:00
95 lines
2.9 KiB
Dart
95 lines
2.9 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:nc_photos/k.dart' as k;
|
||
|
import 'package:nc_photos/theme.dart';
|
||
|
|
||
|
class ToolbarButton extends StatelessWidget {
|
||
|
const ToolbarButton({
|
||
|
Key? key,
|
||
|
required this.icon,
|
||
|
required this.label,
|
||
|
required this.onPressed,
|
||
|
this.isSelected = false,
|
||
|
this.activationOrder = -1,
|
||
|
}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
build(BuildContext context) {
|
||
|
final color = !isSelected && isActivated
|
||
|
? AppTheme.primarySwatchDark[900]!.withOpacity(0.4)
|
||
|
: AppTheme.primarySwatchDark[500]!.withOpacity(0.7);
|
||
|
return InkWell(
|
||
|
onTap: onPressed,
|
||
|
child: Padding(
|
||
|
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
||
|
child: Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||
|
children: [
|
||
|
SizedBox(
|
||
|
width: 64,
|
||
|
height: 64,
|
||
|
child: Stack(
|
||
|
fit: StackFit.expand,
|
||
|
children: [
|
||
|
AnimatedOpacity(
|
||
|
opacity: isSelected || isActivated ? 1 : 0,
|
||
|
duration: k.animationDurationNormal,
|
||
|
child: Container(
|
||
|
decoration: BoxDecoration(
|
||
|
borderRadius: BorderRadius.circular(32),
|
||
|
color: color,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
Center(
|
||
|
child: Icon(
|
||
|
icon,
|
||
|
size: 32,
|
||
|
color: isSelected
|
||
|
? Colors.white
|
||
|
: AppTheme.unfocusedIconColorDark,
|
||
|
),
|
||
|
),
|
||
|
if (isActivated)
|
||
|
Padding(
|
||
|
padding: const EdgeInsets.only(top: 2),
|
||
|
child: Align(
|
||
|
alignment: Alignment.topCenter,
|
||
|
child: Text(
|
||
|
(activationOrder + 1).toString(),
|
||
|
style: TextStyle(
|
||
|
fontSize: 12,
|
||
|
color: isSelected
|
||
|
? Colors.white
|
||
|
: AppTheme.unfocusedIconColorDark,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
const SizedBox(height: 8),
|
||
|
Text(
|
||
|
label,
|
||
|
textAlign: TextAlign.center,
|
||
|
style: TextStyle(
|
||
|
fontSize: 12,
|
||
|
color:
|
||
|
isSelected ? Colors.white : AppTheme.unfocusedIconColorDark,
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
bool get isActivated => activationOrder >= 0;
|
||
|
|
||
|
final IconData icon;
|
||
|
final String label;
|
||
|
final VoidCallback? onPressed;
|
||
|
final bool isSelected;
|
||
|
final int activationOrder;
|
||
|
}
|