diff --git a/lib/views/globalsettingsview.dart b/lib/views/globalsettingsview.dart index 983c9379..352d11a2 100644 --- a/lib/views/globalsettingsview.dart +++ b/lib/views/globalsettingsview.dart @@ -161,7 +161,7 @@ class _GlobalSettingsViewState extends State { child: Text(getThemeName(context, themeId)), //"ddi_$themeId", key: Key("ddi_$themeId")), ); }).toList())), - leading: Icon(CwtchIcons.change_theme, color: settings.current().mainTextColor), + leading: Icon(Icons.palette, color: settings.current().mainTextColor), ), ListTile( title: Text(AppLocalizations.of(context)!.settingUIColumnPortrait, style: TextStyle(color: settings.current().mainTextColor)), @@ -188,7 +188,7 @@ class _GlobalSettingsViewState extends State { softWrap: true, style: TextStyle(color: settings.current().mainTextColor), ), - leading: Icon(Icons.table_chart, color: settings.current().mainTextColor), + leading: Icon(Icons.stay_primary_landscape, color: settings.current().mainTextColor), trailing: Container( width: MediaQuery.of(context).size.width / 4, child: Container( @@ -406,7 +406,7 @@ class _GlobalSettingsViewState extends State { }, activeTrackColor: settings.theme.defaultButtonActiveColor, inactiveTrackColor: settings.theme.defaultButtonDisabledColor, - secondary: Icon(Icons.attach_file, color: settings.current().mainTextColor), + secondary: Icon(Icons.photo, color: settings.current().mainTextColor), ), Visibility( visible: settings.isExperimentEnabled(ImagePreviewsExperiment) && !Platform.isAndroid, diff --git a/lib/views/peersettingsview.dart b/lib/views/peersettingsview.dart index 1fed9e22..cbbe9fa7 100644 --- a/lib/views/peersettingsview.dart +++ b/lib/views/peersettingsview.dart @@ -140,7 +140,7 @@ class _PeerSettingsViewState extends State { CwtchButtonTextField( controller: TextEditingController(text: Provider.of(context, listen: false).onion), onPressed: _copyOnion, - icon: Icon(Icons.copy), + icon: Icon(CwtchIcons.address_copy_2), tooltip: AppLocalizations.of(context)!.copyBtn, ) ]),