Initial commit

This commit is contained in:
Kazimierz Ciołek
2026-02-19 02:49:29 +01:00
commit 782986a632
148 changed files with 29230 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:trainhub_flutter/domain/entities/training_plan.dart';
import 'package:trainhub_flutter/domain/entities/exercise.dart';
part 'plan_editor_state.freezed.dart';
@freezed
class PlanEditorState with _$PlanEditorState {
const factory PlanEditorState({
required TrainingPlanEntity plan,
@Default(false) bool isDirty,
@Default([]) List<ExerciseEntity> availableExercises,
}) = _PlanEditorState;
}