diff --git a/lib/settingsPage.dart b/lib/settingsPage.dart index 60cb8ab..6894f60 100644 --- a/lib/settingsPage.dart +++ b/lib/settingsPage.dart @@ -57,8 +57,6 @@ class _ConnectionSettingsPageState extends State { }); eventBus.fire(SettingsChangedEvent(true)); }), - // Here we take the value from the MyHomePage object that was created by - // the App.build method, and use it to set our appbar title. title: new Text(widget.title), ), body: ListView( @@ -66,7 +64,7 @@ class _ConnectionSettingsPageState extends State { children: [ new Row( children: [ - Text("HTTPS"), + Text("Use ssl (HTTPS)"), Switch( value: (_socketProtocol == "wss"), onChanged: (value) { @@ -132,4 +130,4 @@ class _ConnectionSettingsPageState extends State { ), ); } -} \ No newline at end of file +}