remove activity junk

This commit is contained in:
Joshua Burman 2025-01-07 15:55:30 -05:00
parent 6012a1541e
commit 1027439848

View File

@ -280,84 +280,6 @@ class _ActivityViewState extends State<ActivityView> {
fontSize: 20,
fontWeight: FontWeight.bold),
'Actions')),
// Padding(
// padding: const EdgeInsets.only(left: 10, right: 10),
// child: Card(
// clipBehavior: Clip.antiAlias,
// shape: const RoundedRectangleBorder(
// borderRadius: BorderRadius.only(
// topLeft: Radius.circular(10),
// topRight: Radius.circular(10)),
// ),
// color: Theme.of(context).colorScheme.onPrimary,
// child: Row(children: [
// Ink(
// width: 70,
// color: Theme.of(context)
// .colorScheme
// .primaryContainer,
// child: Consumer<ActivityTimerModel>(
// builder: (context, atm, child) {
// return IconButton(
// alignment:
// AlignmentDirectional.center,
// icon: atm.isActive
// ? const Icon(
// Icons.pause_rounded)
// : const Icon(
// Icons.play_arrow_rounded),
// onPressed: () => {
// atm.isActive
// ? atm.pause()
// : atm.start()
// });
// },
// )),
// Expanded(
// flex: 1,
// child: Stack(
// alignment: Alignment.center,
// children: [
// Container(
// alignment: Alignment.center,
// child: Consumer<ActivityTimerModel>(
// builder: (context, atm, child) {
// return Text(
// style: const TextStyle(
// fontSize: 20),
// textAlign: TextAlign.center,
// '${atm.actionCount} ${atm.currentAction['type']}'
// .toTitleCase());
// },
// ),
// ),
// Container(
// alignment: Alignment.centerRight,
// padding:
// EdgeInsets.only(right: 15),
// child:
// Consumer<ActivityTimerModel>(
// builder: (context, atm,
// child) {
// return Text(
// style: const TextStyle(
// fontSize: 12),
// textAlign: TextAlign.right,
// '${atm.currentAction['actionID'] + 1} of ${atm.totalActions()}');
// })),
// ])),
// ]))),
// Padding(
// padding: EdgeInsets.only(left: 14, right: 14),
// child: Consumer<ActivityTimerModel>(
// builder: (context, atm, child) {
// return LinearProgressIndicator(
// value: atm.progress,
// semanticsLabel: 'Activity Progress',
// );
// })),
// ActivityActionView(actions: actions),
] +
action(actions)));
} else {