first commit

This commit is contained in:
2022-02-08 16:16:13 +05:30
commit 29100d8e86
102 changed files with 3360 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
class UtilController extends GetxController{
void changeLanguage(var lang, var cnty){
var locale = Locale(lang, cnty);
Get.updateLocale(locale);
}
}