skip to Main Content

Adjust text based on screen size in flutter

child: Text( 'MENTALnPREPARATION', textAlign: TextAlign.center, style: FlutterFlowTheme.of(context).headlineMedium.override( fontFamily: FlutterFlowTheme.of(context).headlineMediumFamily, color: Colors.black, fontSize: () { if (MediaQuery.sizeOf(context).width < kBreakpointSmall) { return 32; } else if (MediaQuery.sizeOf(context).width < kBreakpointMedium) { return 35; } else if (MediaQuery.sizeOf(context).width < kBreakpointLarge) { return 40; }…

VIEW QUESTION
Back To Top
Search