Initial commit

This commit is contained in:
2025-12-08 23:25:00 +05:00
commit ee5cb4ac1a
851 changed files with 115172 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class Responsive {
static double width(double size, BuildContext context) {
return MediaQuery.of(context).size.width * (size / 100);
}
static double height(double size, BuildContext context) {
return MediaQuery.of(context).size.height * (size / 100);
}
}