-
-
Notifications
You must be signed in to change notification settings - Fork 261
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Question
I can't force plugin to change font size. see screenshot attached.
Code sample
AspectRatio(
aspectRatio: 1.8,
child: Stack(
overflow: Overflow.clip,
children: [
FractionallySizedBox(
widthFactor: 0.5,
heightFactor: 1,
child: Column(
mainAxisSize: MainAxisSize.max,
children: <Widget>[
Expanded(
child: AutoSizeText(
'${entity.doubleState}${widget.unit}',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: Sizes.stateFontSize),
),
),
Expanded(
child: AutoSizeText(
'${entity.displayName}',
style: TextStyle(fontSize: Sizes.stateFontSize)
),
),
],
),
),
]),
)
Version
- Flutter version: 1.7.8
- auto_size_text version: 2.1.0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested
