mg_flutter_screenutil 0.0.1 mg_flutter_screenutil: ^0.0.1 copied to clipboard
A flutter plugin for adapting screen and font size.Guaranteed to look good on different models
import 'package:flutter/widgets.dart';
import 'src/first_method.dart' as firstMethod;
import 'src/second_method.dart' as secondMethod;
void main() {
const method = int.fromEnvironment('method', defaultValue: 1);
runApp(method == 1 ? firstMethod.MyApp() : secondMethod.MyApp());
}