mirror of
https://github.com/dancojocaru2000/logic-circuits-simulator.git
synced 2025-02-23 01:29:36 +02:00
For now just the code, without UI that shows the simulation. However, the code works. Also added ground work for visual designer.
13 lines
397 B
Dart
13 lines
397 B
Dart
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:logic_circuits_simulator/models.dart';
|
|
|
|
part 'edit_component.freezed.dart';
|
|
|
|
@freezed
|
|
class EditComponentPageArguments with _$EditComponentPageArguments {
|
|
const factory EditComponentPageArguments({
|
|
required ComponentEntry component,
|
|
@Default(false)
|
|
bool newComponent,
|
|
}) = _EditComponentPageArguments;
|
|
}
|