add phone Height and Width into helpers

This commit is contained in:
raf-dev1
2025-06-16 09:39:47 +03:00
parent 2b58af4560
commit 5d327e29c7

View File

@ -0,0 +1,4 @@
import 'package:flutter/material.dart';
double deviceHeight(BuildContext context) => MediaQuery.of(context).size.height;
double deviceWidth(BuildContext context) => MediaQuery.of(context).size.width;