Responsive_Flutter, I had the same issues since reading your problem. I found it Works every time using this package to resize your fonts.
This Flutter package is for scaling the size your apps UI and fontSizefontSize across different sized devices. (The example shows the top text using the Responsive_Flutter package and the bottom text without plugin.
https://github.com/layounisl/responsive_flutter
You can install in 30 seconds - 3 Steps
- Add dependencies to yaml file "responsive_flutter: ^0.0.4"
responsive_flutter: ^0.0.4 - import 'package:responsive_flutter/responsive_flutter.dart';
import 'package:responsive_flutter/responsive_flutter.dart'; - child: Text("Responsive flutter",
style: TextStyle(fontSize: ResponsiveFlutter.of(context).fontSize(3)),
child: Text("Responsive flutter", style: TextStyle(fontSize: ResponsiveFlutter.of(context).fontSize(3)),
