114 lines
3.2 KiB
Dart
114 lines
3.2 KiB
Dart
part of 'main.dart';
|
|
|
|
class SettingsPage extends StatefulWidget {
|
|
SettingsPage({Key key, this.title}) : super(key: key);
|
|
|
|
final String title;
|
|
|
|
@override
|
|
_SettingsPageState createState() => new _SettingsPageState();
|
|
}
|
|
|
|
class _SettingsPageState extends State<SettingsPage> {
|
|
String _hassioDomain = "";
|
|
String _hassioPort = "";
|
|
String _hassioPassword = "";
|
|
String _socketProtocol = "wss";
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_loadSettings();
|
|
}
|
|
|
|
_loadSettings() async {
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
|
|
setState(() {
|
|
_hassioDomain = prefs.getString("hassio-domain");
|
|
_hassioPort = prefs.getString("hassio-port");
|
|
_hassioPassword = prefs.getString("hassio-password");
|
|
_socketProtocol = prefs.getString("hassio-protocol");
|
|
});
|
|
}
|
|
|
|
_saveSettings() async {
|
|
debugPrint("Saving settings....");
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
prefs.setString("hassio-domain", _hassioDomain);
|
|
prefs.setString("hassio-port", _hassioPort);
|
|
prefs.setString("hassio-password", _hassioPassword);
|
|
prefs.setString("hassio-protocol", _socketProtocol);
|
|
debugPrint("Done saving settings....");
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new Scaffold(
|
|
appBar: new AppBar(
|
|
leading: IconButton(icon: Icon(Icons.arrow_back), onPressed: (){
|
|
_saveSettings();
|
|
Navigator.pop(context);
|
|
}),
|
|
// 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(
|
|
padding: const EdgeInsets.all(20.0),
|
|
children: <Widget>[
|
|
new Row(
|
|
children: [
|
|
Text("HTTPS"),
|
|
Switch(
|
|
value: (_socketProtocol == "wss"),
|
|
onChanged: (value) {
|
|
setState(() {
|
|
_socketProtocol = value ? "wss" : "ws";
|
|
});
|
|
_saveSettings();
|
|
},
|
|
)
|
|
],
|
|
),
|
|
new TextField(
|
|
decoration: InputDecoration(
|
|
labelText: "Home Assistant domain or ip address"
|
|
),
|
|
controller: TextEditingController(
|
|
text: _hassioDomain
|
|
),
|
|
onChanged: (value) {
|
|
_hassioDomain = value;
|
|
_saveSettings();
|
|
},
|
|
),
|
|
new TextField(
|
|
decoration: InputDecoration(
|
|
labelText: "Home Assistant port"
|
|
),
|
|
controller: TextEditingController(
|
|
text: _hassioPort
|
|
),
|
|
onChanged: (value) {
|
|
_hassioPort = value;
|
|
_saveSettings();
|
|
},
|
|
),
|
|
new TextField(
|
|
decoration: InputDecoration(
|
|
labelText: "Home Assistant password"
|
|
),
|
|
controller: TextEditingController(
|
|
text: _hassioPassword
|
|
),
|
|
onChanged: (value) {
|
|
_hassioPassword = value;
|
|
_saveSettings();
|
|
},
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
} |