change settings icons to filled and rounded
This commit is contained in:
@@ -58,7 +58,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
),
|
),
|
||||||
SettingsListTile(
|
SettingsListTile(
|
||||||
title: loc.export_data,
|
title: loc.export_data,
|
||||||
icon: Icons.upload_outlined,
|
icon: Icons.upload_rounded,
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
final String json =
|
final String json =
|
||||||
@@ -73,7 +73,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
),
|
),
|
||||||
SettingsListTile(
|
SettingsListTile(
|
||||||
title: loc.import_data,
|
title: loc.import_data,
|
||||||
icon: Icons.download_outlined,
|
icon: Icons.download_rounded,
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
final result = await DataTransferService.importData(
|
final result = await DataTransferService.importData(
|
||||||
@@ -85,7 +85,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
),
|
),
|
||||||
SettingsListTile(
|
SettingsListTile(
|
||||||
title: loc.delete_all_data,
|
title: loc.delete_all_data,
|
||||||
icon: Icons.download_outlined,
|
icon: Icons.delete_rounded,
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
showDialog<bool>(
|
showDialog<bool>(
|
||||||
|
|||||||
Reference in New Issue
Block a user