I am developing an app on Flutter, I have a Column which contains two Text Widgets in my Home Page. the problem is that on a mobile phone, the text size is normal, but on a tablet, the text is way too small to see. Could you please suggest a way to enlarge the text dynamically based on the screen size?
The Widget:
Column(
children: [
Text(
widget.label,
style: TextStyle(
fontFamily: 'Roboto',
color: Colors.white,
fontWeight: FontWeight.bold),
),
Text(
widget.description,
style: TextStyle(
fontFamily: 'Roboto',
color: Colors.white,
fontWeight: FontWeight.w100),
)
],
),
Thanks