Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:

- if: ${{ !cancelled() }}
name: Run Flutter Analyze Commenter
continue-on-error: true
uses: yorifuji/flutter-analyze-commenter@v1
Comment on lines 35 to 38
with:
analyze-log: flutter_analyze.log
Expand Down
4 changes: 4 additions & 0 deletions example/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
include: package:flutter_lints/flutter.yaml

analyzer:
errors:
experimental_member_use: ignore
5 changes: 5 additions & 0 deletions flutter_quill_extensions/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include: package:flutter_lints/flutter.yaml

analyzer:
errors:
experimental_member_use: ignore
Comment on lines +1 to +5
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ class _RenderSingleChildViewport extends RenderBox
@override
void applyPaintTransform(RenderBox child, Matrix4 transform) {
final paintOffset = _paintOffset;
transform.translate(paintOffset.dx, paintOffset.dy);
transform.translateByDouble(paintOffset.dx, paintOffset.dy, 0, 1);
}

@override
Expand Down
Loading