aboutsummaryrefslogtreecommitdiff
path: root/lib/views/settings_view.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/views/settings_view.dart')
-rw-r--r--lib/views/settings_view.dart5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/views/settings_view.dart b/lib/views/settings_view.dart
index 7f2ae90..d217bb7 100644
--- a/lib/views/settings_view.dart
+++ b/lib/views/settings_view.dart
@@ -15,7 +15,6 @@ class SettingsView extends StatefulWidget {
_SettingsViewState createState() => _SettingsViewState();
}
-// TODO: Add subtitles
class _SettingsViewState extends State<SettingsView> {
final TextEditingController _controller = TextEditingController();
final FocusNode _focusNode = FocusNode();
@@ -54,7 +53,7 @@ class _SettingsViewState extends State<SettingsView> {
title: Text(AppLocalizations.of(context)!.setting22, style: cDefaultTextStyle),
trailing: IconButton(
icon: Icon(Icons.arrow_forward_rounded),
- onPressed: null, // TODO: IMPLEMENT: specific server settings
+ onPressed: null,
),
),
_buildTinyTitle(AppLocalizations.of(context)!.settingTitle3),
@@ -93,7 +92,7 @@ class _SettingsViewState extends State<SettingsView> {
);
}
- void _updateSettings(String text) {
+ void _updateSettings(String? text) {
_focusNode.unfocus();
if (text != null) {