diff --git a/lib/pages/integration_settings.page.dart b/lib/pages/integration_settings.page.dart index 850e601..ee0f085 100644 --- a/lib/pages/integration_settings.page.dart +++ b/lib/pages/integration_settings.page.dart @@ -114,6 +114,18 @@ class _IntegrationSettingsPageState extends State { children: [ Text("Location tracking", style: TextStyle(fontSize: Sizes.largeFontSize-2)), Container(height: Sizes.rowPadding,), + InkWell( + onTap: () => Launcher.launchURLInCustomTab(context: context, url: "http://ha-client.homemade.systems/docs#location-tracking"), + child: Text( + "Please read documentation!", + style: TextStyle( + color: Colors.blue, + fontSize: 16, + decoration: TextDecoration.underline + ) + ), + ), + Container(height: Sizes.rowPadding,), Row( children: [ Text("Enable device location tracking"),