Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Type Converters #65

Closed
wants to merge 12 commits into from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ build/
.settings
.last_build_id
*.iml
.vscode/
4 changes: 2 additions & 2 deletions examples/drift/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:auto_mappr_drift_example/db.dart';
import 'package:auto_mappr_drift_example/mappr.dart';
import 'package:examples_drift/db.dart';
import 'package:examples_drift/mappr.dart';

void main() {
final mappr = Mappr();
Expand Down
2 changes: 1 addition & 1 deletion examples/drift/lib/mappr.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:auto_mappr_annotation/auto_mappr_annotation.dart';
import 'package:auto_mappr_drift_example/db.dart';
import 'package:examples_drift/db.dart';

part 'mappr.g.dart';

Expand Down
26 changes: 13 additions & 13 deletions examples/drift/lib/mappr.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/drift/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: auto_mappr_drift_example
name: examples_drift
description: Example project with AutoMappr and Drift integration
version: 1.0.0
publish_to: none
Expand Down
34 changes: 17 additions & 17 deletions examples/example/lib/enum.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions examples/example/lib/equatable.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:auto_mappr_example_another/equatable.dart';
import 'package:examples_example/equatable.dart';

void main() {
final dto = UserDto(id: 123, name: 'Peter', age: 42);
Expand Down
Loading