Skip to content

Commit

Permalink
Fix Flutter SDK Minimum version
Browse files Browse the repository at this point in the history
  • Loading branch information
DavBfr committed Jun 28, 2024
1 parent 9a1edb6 commit 2be58d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions printing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 5.13.1

- Fix Flutter SDK Minimum version

## 5.13.0

- Migrate to package:web and dart:js_interop
Expand Down
4 changes: 2 additions & 2 deletions printing/example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ignore_for_file: public_member_api_docs
// ignore_for_file: public_member_api_docs, avoid_redundant_argument_values

import 'dart:typed_data';

Expand Down Expand Up @@ -45,7 +45,7 @@ class MyApp extends StatelessWidget {
),
),
pw.SizedBox(height: 20),
pw.Flexible(child: pw.FlutterLogo())
pw.Flexible(child: pw.FlutterLogo()),
],
);
},
Expand Down
4 changes: 2 additions & 2 deletions printing/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ topics:
- print
- printing
- report
version: 5.13.0
version: 5.13.1

environment:
sdk: ">=3.3.0 <4.0.0"
flutter: ">=3.19.0"
flutter: ">=3.22.0"

dependencies:
ffi: ">=1.1.0 <3.0.0"
Expand Down

0 comments on commit 2be58d5

Please sign in to comment.