Skip to content

Commit df61d4c

Browse files
updates web package (Baseflow#1645)
* updates web package * updates platform interface * Revert "updates platform interface" This reverts commit 76af148.
1 parent 622706a commit df61d4c

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

geolocator_web/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## 4.1.1
1+
## 4.1.2
2+
3+
- Updates dart SDK to `sdk: ^3.5.0`
4+
- Fixes analyzer issues
5+
6+
# 4.1.1
27

38
- Exposes the `WebSettings` class as a public type.
49

geolocator_web/example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void main() {
2121
/// Example [Widget] showing the functionalities of the geolocator plugin
2222
class GeolocatorWidget extends StatefulWidget {
2323
/// Create a GeolocatorWidget.
24-
const GeolocatorWidget({Key? key}) : super(key: key);
24+
const GeolocatorWidget({super.key});
2525

2626
/// Utility method to create a page with the Baseflow templating.
2727
static ExamplePage createPage() {

geolocator_web/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Demonstrates how to use the geolocator plugin on the web platform.
66
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
77

88
environment:
9-
sdk: ">=2.15.0-0 <3.0.0"
9+
sdk: ^3.5.0
1010

1111
dependencies:
1212
baseflow_plugin_template: ^2.1.2

geolocator_web/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: geolocator_web
22
description: Official web implementation of the geolocator plugin.
33
repository: https://github.com/baseflow/flutter-geolocator/tree/main/geolocator_web
44
issue_tracker: https://github.com/baseflow/flutter-geolocator/issues?q=is%3Aissue+is%3Aopen
5-
version: 4.1.1
5+
version: 4.1.2
66

77
flutter:
88
plugin:
@@ -28,5 +28,5 @@ dev_dependencies:
2828
mockito: ^5.4.0
2929

3030
environment:
31-
sdk: ">=3.4.0 <4.0.0"
31+
sdk: ^3.5.0
3232
flutter: ">=3.16.0"

0 commit comments

Comments
 (0)