Skip to content

Commit

Permalink
Update to Flutter 3.16 and bump version to 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lance Johnstone authored and Lance Johnstone committed Nov 17, 2023
1 parent 3c3ed43 commit 0fd05c8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [6.0.1]

#### (Flutter version support: v3.16.0)

- Fixed `PlatformTextField` that had a breaking argument due to Flutter 3.16 (thanks kishormainali)

## [5.0.0]

#### (Flutter version support: v3.13.0 - 3.13.9)
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1300;
LastUpgradeCheck = 1430;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1300"
LastUpgradeVersion = "1430"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
4 changes: 2 additions & 2 deletions lib/src/platform_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ abstract class _BaseData {
this.onEditingComplete,
this.onSubmitted,
this.inputFormatters,
this.enabled = true,
this.enabled,
this.cursorWidth,
this.cursorRadius,
this.cursorColor,
Expand Down Expand Up @@ -139,7 +139,7 @@ abstract class _BaseData {
final void Function()? onEditingComplete;
final void Function(String)? onSubmitted;
final List<TextInputFormatter>? inputFormatters;
final bool enabled;
final bool? enabled;
final double? cursorWidth;
final Radius? cursorRadius;
final Color? cursorColor;
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: flutter_platform_widgets
description: Simplifying the use of both Material and Cupertino widgets with a single widget
version: 5.0.0
version: 6.0.1
homepage: https://github.com/stryder-dev/flutter_platform_widgets
documentation: https://github.com/stryder-dev/flutter_platform_widgets/wiki

environment:
sdk: ">=3.1.0-0 <4.0.0"
flutter: ">=3.13.0"
sdk: ">=3.2.0-0 <4.0.0"
flutter: ">=3.16.0"

dependencies:
flutter:
Expand Down

0 comments on commit 0fd05c8

Please sign in to comment.