Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

bump intl version to 0.18.0 #598

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 1 addition & 1 deletion charts_common/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:

dependencies:
collection: ^1.14.5
intl: '>=0.15.2 < 0.17.0'
intl: ">=0.15.2 < 0.18.0"
logging: any
meta: ^1.1.1
vector_math: ^2.0.8
Expand Down
4 changes: 3 additions & 1 deletion charts_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: example
description: Charts-Flutter Demo
environment:
sdk: '>=1.23.0 <3.0.0'
dependencies:
charts_flutter:
path: ../
Expand All @@ -9,6 +11,6 @@ dependencies:
flutter_test:
sdk: flutter
meta: ^1.1.1
intl: ^0.15.2
intl: ">=0.15.2 < 0.18.0"
flutter:
uses-material-design: true
2 changes: 1 addition & 1 deletion charts_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies:
collection: ^1.14.5
flutter:
sdk: flutter
intl: '>=0.15.2 < 0.17.0'
intl: ">=0.15.2 < 0.18.0"
logging: any
meta: ^1.1.1

Expand Down
5 changes: 4 additions & 1 deletion charts_flutter/test/user_managed_state_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ class TestChartState extends State<TestChart> {
defaultInteractions: false,
);

return new GestureDetector(child: chart, onTap: handleOnTap);
return new Directionality(
textDirection: TextDirection.ltr,
child: new GestureDetector(child: chart, onTap: handleOnTap),
);
ArtyomSasin marked this conversation as resolved.
Show resolved Hide resolved
}

void handleOnTap() {
Expand Down