Added icons

This commit is contained in:
kodjomoustapha
2023-08-27 15:22:48 +01:00
parent 1a8dac5709
commit 4cd0627e72
72 changed files with 143 additions and 125 deletions

5
utils/utils.dart Normal file
View File

@@ -0,0 +1,5 @@
String getIconUrl(String name, String lang) {
return name.isEmpty
? ""
: 'https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icon/mangayomi-$lang-$name.png';
}