mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
101 lines
3.3 KiB
Dart
101 lines
3.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/generated/l10n.dart';
|
|
import 'package:lightmeter/navigation/routes.dart';
|
|
import 'package:lightmeter/providers/equipment_profile_provider.dart';
|
|
import 'package:lightmeter/res/dimens.dart';
|
|
import 'package:lightmeter/screens/equipment_profile_edit/flow_equipment_profile_edit.dart';
|
|
import 'package:lightmeter/screens/shared/sliver_placeholder/widget_sliver_placeholder.dart';
|
|
import 'package:lightmeter/screens/shared/sliver_screen/screen_sliver.dart';
|
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
class EquipmentProfilesScreen extends StatefulWidget {
|
|
const EquipmentProfilesScreen({super.key});
|
|
|
|
@override
|
|
State<EquipmentProfilesScreen> createState() => _EquipmentProfilesScreenState();
|
|
}
|
|
|
|
class _EquipmentProfilesScreenState extends State<EquipmentProfilesScreen> with SingleTickerProviderStateMixin {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SliverScreen(
|
|
title: Text(S.of(context).films),
|
|
appBarActions: [
|
|
IconButton(
|
|
onPressed: _addProfile,
|
|
icon: const Icon(Icons.add_outlined),
|
|
tooltip: S.of(context).tooltipAdd,
|
|
),
|
|
],
|
|
slivers: [
|
|
if (EquipmentProfiles.of(context).isNotEmpty)
|
|
_EquipmentProfilesListBuilder(
|
|
values: EquipmentProfiles.of(context).toList(),
|
|
onEdit: _editProfile,
|
|
)
|
|
else
|
|
SliverPlaceholder(onTap: _addProfile),
|
|
],
|
|
);
|
|
}
|
|
|
|
void _addProfile() {
|
|
Navigator.of(context).pushNamed(
|
|
NavigationRoutes.equipmentProfileEditScreen.name,
|
|
arguments: const EquipmentProfileEditArgs(),
|
|
);
|
|
}
|
|
|
|
void _editProfile(EquipmentProfile profile) {
|
|
Navigator.of(context).pushNamed(
|
|
NavigationRoutes.equipmentProfileEditScreen.name,
|
|
arguments: EquipmentProfileEditArgs(profile: profile),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _EquipmentProfilesListBuilder extends StatelessWidget {
|
|
final List<EquipmentProfile> values;
|
|
final void Function(EquipmentProfile film) onEdit;
|
|
|
|
const _EquipmentProfilesListBuilder({
|
|
required this.values,
|
|
required this.onEdit,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SliverList.builder(
|
|
itemCount: values.length,
|
|
itemBuilder: (_, index) => Padding(
|
|
padding: EdgeInsets.fromLTRB(
|
|
Dimens.paddingM,
|
|
index == 0 ? Dimens.paddingM : 0,
|
|
Dimens.paddingM,
|
|
index == values.length - 1 ? Dimens.paddingM + MediaQuery.paddingOf(context).bottom : 0.0,
|
|
),
|
|
child: Card(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.vertical(
|
|
top: index == 0 ? const Radius.circular(Dimens.borderRadiusL) : Radius.zero,
|
|
bottom: index == values.length - 1 ? const Radius.circular(Dimens.borderRadiusL) : Radius.zero,
|
|
),
|
|
),
|
|
child: Padding(
|
|
padding: EdgeInsets.only(
|
|
top: index == 0 ? Dimens.paddingM : 0.0,
|
|
bottom: index == values.length - 1 ? Dimens.paddingM : 0.0,
|
|
),
|
|
child: ListTile(
|
|
title: Text(values[index].name),
|
|
trailing: IconButton(
|
|
onPressed: () => onEdit(values[index]),
|
|
icon: const Icon(Icons.edit),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|