feat: language

This commit is contained in:
efrilm
2025-08-13 01:17:00 +07:00
parent 3d43d7a934
commit 83edfa61f1
29 changed files with 1539 additions and 156 deletions
+18
View File
@@ -0,0 +1,18 @@
import 'dart:ui';
import '../../domain/language/language.dart';
List<Language> languages = [
Language(
locale: const Locale('id', 'ID'),
name: 'Indonesian',
path: '🇮🇩',
nativeName: 'Bahasa Indonesia',
),
Language(
locale: const Locale('en', 'US'),
name: 'English',
path: '🇺🇸',
nativeName: 'English',
),
];