Skip to content

Commit b014f61

Browse files
committed
Expose WebSettings class publicly.
1 parent f546b62 commit b014f61

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

geolocator_web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.1.1
2+
3+
- Exposes the `WebSettings` class as a public type.
4+
15
## 4.1.0
26

37
- Adds WebSettings class, allowing a location maximumAge to be specified.

geolocator_web/example/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
/build/
3232

3333
# Web related
34-
lib/generated_plugin_registrant.dart
3534

3635
# Symbolication related
3736
app.*.symbols

geolocator_web/lib/geolocator_web.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import 'src/geolocation_manager.dart';
77
import 'src/permissions_manager.dart';
88
import 'src/html_geolocation_manager.dart';
99
import 'src/html_permissions_manager.dart';
10-
import 'src/types/web_settings.dart';
10+
import 'web_settings.dart';
1111

1212
export 'package:geolocator_platform_interface/geolocator_platform_interface.dart';
13-
export 'src/types/web_settings.dart' show WebSettings;
13+
export 'web_settings.dart' show WebSettings;
1414

1515
/// The web implementation of [GeolocatorPlatform].
1616
///

geolocator_web/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.0
5+
version: 4.1.1
66

77
flutter:
88
plugin:

0 commit comments

Comments
 (0)