INFRA: Set Up Project.

This commit is contained in:
2025-11-28 11:10:49 +05:00
commit c798279f7d
609 changed files with 77436 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../lang/app_en.dart';
class LocalizationService extends Translations {
// Default locale
static const locale = Locale('en', 'US');
static final locales = [const Locale('en')];
// Keys and their translations
// Translations are separated maps in `lang` file
@override
Map<String, Map<String, String>> get keys => {'en_US': enUS};
// Gets locale from language, and updates the locale
void changeLocale(String lang) {
Get.updateLocale(Locale(lang));
}
}