10 lines
316 B
Dart
10 lines
316 B
Dart
// ignore_for_file: prefer_function_declarations_over_variables
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
final letterSpacing = (fontSize, percent) => fontSize * percent / 100;
|
|
|
|
final width = (context) => MediaQuery.of(context).size.width / 100;
|
|
|
|
final height = (context) => MediaQuery.of(context).size.height / 100;
|