Skip to content

Commit

Permalink
fix: resolve flutter 3.22.1 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
EnesKaraosman committed May 29, 2024
1 parent bdddc97 commit bd78d7b
Show file tree
Hide file tree
Showing 22 changed files with 211 additions and 173 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 1.6.5

* fix: resolve flutter 3.22.1 issues

## 1.6.5

* ci: add auto tag workflow
* chore: upgrade internal dependencies

Expand Down
7 changes: 6 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
include: package:lint/analysis_options.yaml
include: package:lint/analysis_options.yaml
linter:
rules:
public_member_api_docs: false
prefer_relative_imports: true
always_use_package_imports: false
8 changes: 4 additions & 4 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
integration_test: 13825b8a9334a850581300559b8839134b124670
path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c
url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812
integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe

PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011

COCOAPODS: 1.14.3
COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1430;
LastUpgradeCheck = 1510;
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 = "1430"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
6 changes: 2 additions & 4 deletions example/lib/advanced_chat.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,8 @@ class _AdvancedChat extends State<AdvancedChat> {
)
.setOnHTMLWidgetPressed(
() => {
"onLinkTap": (url, _, __, ___) =>
debugPrint("onLinkTapped: $url"),
"onImageTap": (src, _, __, ___) =>
debugPrint("onImageTapped: $src")
"onLinkTap": (url, _, __) => debugPrint("onLinkTapped: $url"),
"onImageTap": (src, _, __) => debugPrint("onImageTapped: $src")
},
)
.setOnCarouselItemButtonPressed((item) => debugPrint(item.payload))
Expand Down
Loading

0 comments on commit bd78d7b

Please sign in to comment.