You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
406 B

  1. import 'package:flutter/material.dart';
  2. extension ContextExtentions on BuildContext {
  3. double get height {
  4. return MediaQuery.of(this).size.height;
  5. }
  6. double get width {
  7. return MediaQuery.of(this).size.width;
  8. }
  9. double get horizontallyMargin {
  10. return MediaQuery.of(this).size.width * 0.05;
  11. }
  12. double get verticallyMargin {
  13. return MediaQuery.of(this).size.height * 0.025;
  14. }
  15. }