This commit is contained in:
Schnitzel5 2025-09-07 22:28:20 +02:00
parent 5a6552e6f6
commit 2955dd0bd1

View file

@ -73,6 +73,28 @@ class _SourcesScreenState extends ConsumerState<SourcesScreen> {
label: Text(context.l10n.show_extensions),
),
),
Padding(
padding: const EdgeInsets.only(left: 12),
child: Row(
children: [
Text(
l10n.other,
style: const TextStyle(
fontWeight: FontWeight.bold,
fontSize: 13,
),
),
],
),
),
SourceListTile(
source: Source(
name: "local",
lang: "",
itemType: widget.itemType,
),
itemType: widget.itemType,
),
],
);
}